From aa362a8c7c7e1fc24164a30ba6eae85315606af8 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 31 Jan 2026 11:46:00 -0500 Subject: [PATCH] Mark gorilla/websocket as direct dependency Promote gorilla/websocket from indirect to direct dependency as it's used for WebSocket sync functionality --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index b120d18..4c024c7 100644 --- a/go.mod +++ b/go.mod @@ -9,6 +9,7 @@ require ( github.com/go-playground/validator/v10 v10.30.1 github.com/golang-jwt/jwt/v5 v5.3.0 github.com/google/uuid v1.4.0 + github.com/gorilla/websocket v1.5.3 github.com/jackc/pgx/v5 v5.4.3 github.com/labstack/echo-jwt/v4 v4.4.0 github.com/labstack/echo/v4 v4.13.4 @@ -22,7 +23,6 @@ require ( github.com/gabriel-vasile/mimetype v1.4.12 // indirect github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect - github.com/gorilla/websocket v1.5.3 // indirect github.com/jackc/pgpassfile v1.0.0 // indirect github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect github.com/jackc/puddle/v2 v2.2.1 // indirect