/* * OpenAPI Petstore * * This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters. * * API version: 1.0.0 * Generated by: OpenAPI Generator (https://openapi-generator.tech) */ package main import ( "log" // WARNING! // Change this to a fully-qualified import path // once you place this file into your project. // For example, // // sw "github.com/myname/myrepo/go" // sw "./go" ) func main() { log.Printf("Server started") router := sw.NewRouter() log.Fatal(router.Run(":8080")) }