go-swagger3 icon indicating copy to clipboard operation
go-swagger3 copied to clipboard

Swagger 3.0 implementation for go

Results 12 go-swagger3 issues
Sort by recently updated
recently updated
newest added

Currently there are only integration tests. To ensure a more robust and reliable codebase, it's needed to expand our test suite to include unit tests.

enhancement
good first issue

If you have a struct that has map with struct values, the swagger generated does not reference the AccessDefinition. ``` type Policys struct { AccessRights map[string]AccessDefinitions `bson:"access_rights" json:"access_rights"` } type...