From 85dc709979036da8334755708d7dafd41782787d Mon Sep 17 00:00:00 2001 From: qowevisa Date: Mon, 4 Nov 2024 17:53:03 +0200 Subject: [PATCH] Change Port from 3001 to 3000 --- cmd/http-server/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/http-server/main.go b/cmd/http-server/main.go index 5a6af1d..6534960 100644 --- a/cmd/http-server/main.go +++ b/cmd/http-server/main.go @@ -95,5 +95,5 @@ func main() { }) go tokens.StartTokens() - r.Run("127.0.0.1:3001") + r.Run("127.0.0.1:3000") }