From 74bb587fe3cc06a29efb60f5d5a76c6acd221251 Mon Sep 17 00:00:00 2001 From: Andre Schaf Date: Sun, 29 Mar 2026 21:08:28 +0200 Subject: [PATCH] applied port --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)