chore: use github.com/coder/websocket instead of nhooyr.io/websocket (#14)

nhooyr.io/websocket has been deprecated and is now maintained by Coder,
https://github.com/coder/websocket.

Also bumps to 1.8.12 which is compatible.
This commit is contained in:
Cameron Fleming
2025-01-02 22:51:29 +00:00
committed by GitHub
parent e445039cb8
commit 8ffe66a1bc
3 changed files with 7 additions and 7 deletions

View File

@@ -7,13 +7,13 @@ import (
"fmt"
"net/http"
"net/url"
"nhooyr.io/websocket/wsjson"
"github.com/coder/websocket/wsjson"
"time"
"github.com/coreos/go-oidc/v3/oidc"
"github.com/gin-gonic/gin"
"nhooyr.io/websocket"
"github.com/coder/websocket"
)
type CloudRegisterRequest struct {