diff --git a/main.go b/main.go index 1dd9373..f20f555 100644 --- a/main.go +++ b/main.go @@ -10,7 +10,7 @@ func main() { fileServer := http.FileServer(neuteredFs{http.Dir("./static")}) http.Handle("/", fileServer) - err := http.ListenAndServe(":3000", nil) + err := http.ListenAndServe(":8000", nil) if err != nil { fmt.Println(err)