[relay] Use new upstream for nhooyr.io/websocket package (#3287)

The nhooyr.io/websocket package was renamed to github.com/coder/websocket when
the project was transferred to "coder" as the new maintainer.

Use the new import path and update go.mod and go.sum accordingly.

Signed-off-by: Christian Stewart <christian@aperture.us>
This commit is contained in:
Christian Stewart
2025-02-05 14:03:53 -08:00
committed by GitHub
parent 125b5e2b16
commit fe370e7d8f
6 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ import (
"net"
"time"
"nhooyr.io/websocket"
"github.com/coder/websocket"
)
type Conn struct {

View File

@@ -12,7 +12,7 @@ import (
"strings"
log "github.com/sirupsen/logrus"
"nhooyr.io/websocket"
"github.com/coder/websocket"
"github.com/netbirdio/netbird/relay/server/listener/ws"
"github.com/netbirdio/netbird/util/embeddedroots"