back to 8080

This commit is contained in:
hook-lord 2024-09-13 22:52:22 +02:00
parent 0181b91356
commit bf621ba223

View File

@ -46,6 +46,6 @@ func main() {
http.HandleFunc("/events", SSEHandler)
http.HandleFunc("/trigger", TriggerHandler)
log.Println("Server running on port 80")
log.Fatal(http.ListenAndServe(":80", nil))
log.Println("Server running on port 8080")
log.Fatal(http.ListenAndServe(":8080", nil))
}