From bf621ba22328a96318555782e6b16f4b5a3e56f7 Mon Sep 17 00:00:00 2001 From: hook-lord Date: Fri, 13 Sep 2024 22:52:22 +0200 Subject: [PATCH] back to 8080 --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index b9e6ba4..3cc75a1 100644 --- a/main.go +++ b/main.go @@ -46,6 +46,6 @@ func main() { http.HandleFunc("/events", SSEHandler) http.HandleFunc("/trigger", TriggerHandler) - log.Println("Server running on port 80") - log.Fatal(http.ListenAndServe(":80", nil)) + log.Println("Server running on port 8080") + log.Fatal(http.ListenAndServe(":8080", nil)) }