This commit is contained in:
uta-mori
2020-07-28 13:28:23 +09:00
parent 86b970f35a
commit 8009f7e72b
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ func handle(w http.ResponseWriter, r *http.Request) {
}
func main() {
portNumber := "5000"
portNumber := "9000"
http.HandleFunc("/", handle)
fmt.Println("Server listening on port ", portNumber)
http.ListenAndServe(":"+portNumber, nil)