From 74dda89c699a6984e832d06dfd6c45e5e05f482d Mon Sep 17 00:00:00 2001 From: qowevisa Date: Tue, 6 Aug 2024 23:08:50 +0300 Subject: [PATCH] Add listening 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 d2b3b5c..01ab1ad 100644 --- a/cmd/http-server/main.go +++ b/cmd/http-server/main.go @@ -74,5 +74,5 @@ func main() { }) go tokens.StartTokens() - r.Run(":3000") + r.Run("127.0.0.1:3000") }