Change ws route

This commit is contained in:
Daniel 2024-11-06 20:17:13 -05:00
parent c1a258f63c
commit c4df60a89a
2 changed files with 2 additions and 2 deletions

View file

@ -87,7 +87,7 @@ func main() {
log.Fatal(err)
}
u := url.URL{Scheme: "ws" + secureSuffix(), Host: *addr, Path: "/ws"}
u := url.URL{Scheme: "ws" + secureSuffix(), Host: *addr, Path: "/api/ws"}
log.Printf("connecting to %s", u.String())
dialer := websocket.Dialer{

View file

@ -183,5 +183,5 @@ func (conn *wsConn) writeToClient(w io.WriteCloser, msg ToClient) {
}
func (n *wsManager) PrivateRoutes(r chi.Router) {
r.HandleFunc("/ws", n.serveWS)
r.HandleFunc("/api/ws", n.serveWS)
}