Update port

This commit is contained in:
Daniel Cosme
2026-03-30 14:07:01 -04:00
parent 5523e7fb12
commit 9ba8cef0a8
4 changed files with 3 additions and 3 deletions

View File

@@ -35,8 +35,8 @@ func server() error {
http.HandleFunc("/mysql", state.connectDB)
http.HandleFunc("/report", state.report)
slog.Info("listening", "addr", "4001")
err := http.ListenAndServe(":4001", http.DefaultServeMux)
slog.Info("listening", "addr", "62120")
err := http.ListenAndServe(":62120", http.DefaultServeMux)
if err != nil {
return err
}