Files
g365sfu/main.go
2026-03-09 16:21:28 +02:00

17 lines
223 B
Go

package main
import (
"g365sfu/socket"
"net/http"
"os"
)
func main() {
http.HandleFunc("/", socket.HandleWebSocket)
port := os.Getenv("PORT")
if port == "" {
port = "1001"
}
http.ListenAndServe(":"+port, nil)
}