applied port

This commit is contained in:
Andre Schaf 2026-03-29 21:08:28 +02:00
parent 1e9f6b7fe0
commit 74bb587fe3

View file

@ -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)