Skip to content

Commit

Permalink
chg: fix: server port
Browse files Browse the repository at this point in the history
  • Loading branch information
felipemarinho97 committed Nov 18, 2024
1 parent e994ee1 commit 5034a11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 5034a11

Please sign in to comment.