Update main.go

This commit is contained in:
Tomáš Dvořák
2025-08-29 19:41:15 +02:00
committed by GitHub
parent d9e2b521d0
commit 1959ec1a66
+2 -2
View File
@@ -91,6 +91,6 @@ func enableCors(handler http.HandlerFunc) http.HandlerFunc {
func main() { func main() {
http.HandleFunc("/send", enableCors(sendHandler)) http.HandleFunc("/send", enableCors(sendHandler))
log.Println("Server running on :8080") log.Println("Server running on :660")
log.Fatal(http.ListenAndServe(":8080", nil)) log.Fatal(http.ListenAndServe(":660", nil))
} }