diff options
-rw-r--r-- | server.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -87,12 +87,12 @@ func main() { if len(os.Args) == 2 { url = os.Args[1] } else { - url = "http://localhost:8000/" + url = "http://localhost:4729/" } if err := os.Chdir("out"); err != nil { panic(err) } http.HandleFunc("/", router) - log.Fatal(http.ListenAndServe(":8000", nil)) + log.Fatal(http.ListenAndServe(":4729", nil)) } |