Change listening port

This commit is contained in:
dominic
2025-04-24 22:21:30 -04:00
parent 2a559dfd28
commit afe67db285
+2 -2
View File
@@ -733,6 +733,6 @@ func main() {
// -----------------
fmt.Println("Listening on :8080")
http.ListenAndServe(":8080", r)
fmt.Println("Listening on 0.0.0.0:7676")
http.ListenAndServe("0.0.0.0:7676", r)
}