From: Fl_GUI Date: Sun, 26 Jan 2025 14:47:50 +0000 (+0100) Subject: port is now 8080 X-Git-Url: https://git.openfl.eu/?a=commitdiff_plain;h=b6637f8a1bf3a3ea67351402302c069a23fece66;p=yampl.git port is now 8080 --- diff --git a/main.go b/main.go index af621c0..d9717c4 100644 --- a/main.go +++ b/main.go @@ -101,6 +101,6 @@ func main() { http.Handle("GET /static/", http.StripPrefix("/static", http.FileServerFS(os.DirFS(*staticdirpath)))) } - fmt.Println("listening on localhost:8081") + fmt.Println("listening on localhost:8080") panic(http.ListenAndServe(":8080", nil)) }