14 lines
260 B
Go
14 lines
260 B
Go
package json
|
|
|
|
type Language struct {
|
|
Id string `json:"id"`
|
|
Label string `json:"label"`
|
|
Modules []LangModule `json:"modules"`
|
|
}
|
|
|
|
type LangModule struct {
|
|
Id string `json:"id"`
|
|
Label string `json:"label"`
|
|
Path string `json:"path"`
|
|
}
|