From 2eec80190758ed15614c08c2397c5c577df8b46a Mon Sep 17 00:00:00 2001 From: qowevisa Date: Mon, 12 Aug 2024 18:47:36 +0300 Subject: [PATCH] Make api listens to 3001 port on localhost --- 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 d80ba2b..efa4028 100644 --- a/cmd/http-server/main.go +++ b/cmd/http-server/main.go @@ -81,5 +81,5 @@ func main() { }) go tokens.StartTokens() - r.Run(":3000") + r.Run(":3001") }