This commit is contained in:
AlexandreRouma
2025-11-04 16:07:18 -05:00
parent 140bc3c3f5
commit f494612908
11 changed files with 411 additions and 445 deletions

View File

@@ -14,9 +14,9 @@ func main() {
http.Handle("/", static)
// Create a handler for the signaling backend
// http.HandleFunc("/sig", wsHandler)
http.HandleFunc("/sig", wsHandler)
// Run the server
err := http.ListenAndServe(":3000", nil)
if( err != nil) { log.Fatal(err) }
if (err != nil) { log.Fatal(err) }
}