From 21490af3f0bf90b970e07af902beaa93804abd3b Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Fri, 23 Jan 2026 17:55:25 -0500 Subject: [PATCH] Add jwtgo import for homepage auth check --- cmd/server/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/server/main.go b/cmd/server/main.go index de76c9f..733d6b9 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -8,6 +8,7 @@ import ( "net/http" "github.com/go-playground/validator/v10" + jwtgo "github.com/golang-jwt/jwt" "github.com/labstack/echo/v4" "github.com/labstack/echo/v4/middleware" )