@@ -0,0 +1,16 @@
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)
The note is not visible to the blocked user.