go-swagger toolkit

Swagger 2.0 describes your API's for you, so you don't have to

Generate a server for a swagger spec

generate server

The toolkit has a command that will let you generate a docker friendly server with support for TLS. You can configure it through environment variables that are commonly used on PaaS services.

22 Nov 2015

Untyped API server

untyped server

The toolkit supports serving a swagger spec with untyped data. This means that it uses mostly interface{} as params to each operation and as result type. It does allow you to serve a spec up quickly. This is one of the building blocks required to serve up stub API’s and to generate a test server with predictable responses.

22 Nov 2015