{{>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)) }