run on localhost only, no 0.0.0.0

This commit is contained in:
2025-11-17 01:32:52 +03:00
parent f547e3f525
commit e42d492ef2

View File

@@ -8,5 +8,5 @@ import (
func main() { func main() {
fmt.Println("Hello from echo-echo-cho-o") fmt.Println("Hello from echo-echo-cho-o")
api.BuildRouter(":8080") api.BuildRouter("localhost:8080")
} }