From e2b92f8ba19ef439082381f24c53569eb3cb3468 Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 18 Dec 2025 19:58:21 +0200 Subject: [PATCH] make jwt.Parse public --- internal/jwt/parse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/jwt/parse.go b/internal/jwt/parse.go index 78e9a1c..54d4cb0 100644 --- a/internal/jwt/parse.go +++ b/internal/jwt/parse.go @@ -6,7 +6,7 @@ import ( "github.com/golang-jwt/jwt/v5" ) -func parse( +func Parse( tokenStr string, method jwt.SigningMethod, key any,