Make api listens to 3001 port on localhost

This commit is contained in:
qowevisa 2024-08-12 18:47:36 +03:00
parent 7adde1fee1
commit 2eec801907

View File

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