Hi Is it possible to use a slice of structs, like here? ``` go type Configs struct { Port string `param:"port"` Groups []Group `param:"groups"` } type Group struct { Id string `param:"id"` /* other fields */ } ``` How?