From 5034a11a663548c63ecc8506dec59601688ae4a0 Mon Sep 17 00:00:00 2001 From: Felipe Marinho Date: Mon, 18 Nov 2024 21:59:07 +0000 Subject: [PATCH] chg: fix: server port --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 6a28ff7..44b0385 100644 --- a/main.go +++ b/main.go @@ -39,7 +39,7 @@ func main() { } }() fmt.Println("Server listening on :7006") - err := http.ListenAndServe(":7007", indexerMux) + err := http.ListenAndServe(":7006", indexerMux) if err != nil { panic(err) }