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"` }