forked from loafle/openapi-generator-original
* Output swagger models. Fix route verbs and formatting * Remove backup files * Make postProcessOperations consistent with go client
25 lines
403 B
Plaintext
25 lines
403 B
Plaintext
{{>partial_header}}
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
|
|
// WARNING!
|
|
// Change this to a fully-qualified import path
|
|
// once you place this file into your project.
|
|
// For example,
|
|
//
|
|
// sw "github.com/myname/myrepo/{{apiPath}}"
|
|
//
|
|
sw "./{{apiPath}}"
|
|
)
|
|
|
|
func main() {
|
|
log.Printf("Server started")
|
|
|
|
router := sw.NewRouter()
|
|
|
|
log.Fatal(http.ListenAndServe(":{{serverPort}}", router))
|
|
}
|