From 4036a6fc499c090793d452523bcd1a44f2277638 Mon Sep 17 00:00:00 2001 From: Cipher Vance Date: Fri, 19 Sep 2025 21:00:56 -0500 Subject: [PATCH] changed port to 5080 --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 08341e5..6c0231c 100644 --- a/main.go +++ b/main.go @@ -70,7 +70,7 @@ func main() { // Start server port := os.Getenv("PORT") if port == "" { - port = "8080" + port = "5080" } r.Run(":" + port) }