Make api listens to localhost

This commit is contained in:
qowevisa 2024-08-12 18:48:09 +03:00
parent 2eec801907
commit 514d2bac59

View File

@ -81,5 +81,5 @@ func main() {
}) })
go tokens.StartTokens() go tokens.StartTokens()
r.Run(":3001") r.Run("127.0.0.1:3001")
} }