From b6637f8a1bf3a3ea67351402302c069a23fece66 Mon Sep 17 00:00:00 2001 From: Fl_GUI Date: Sun, 26 Jan 2025 15:47:50 +0100 Subject: [PATCH] port is now 8080 --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) } -- 2.47.1