github.com/ryanbennettvoid/go-swagger@v0.18.1-0.20190104015444-3854bbbe2392/docs/untyped/server.md (about) 1 # Untyped API server 2 3 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 APIs and to generate a test server with predictable responses. 4 5 <!--more--> 6 7 In this document we'll use the todo list application to build a server that doesn't use any code generation. So we'll load a predefined swagger specification document and serve it up, while writing a minimal amount of code and try to avoid requiring a type cast. 8 9 Let's start with just