rename called function

This commit is contained in:
2025-12-18 19:58:41 +02:00
parent c80f7932b4
commit 524749b329

View File

@@ -16,5 +16,5 @@ func (s *HMACSigner) Sign(claims jwt.Claims) (string, error) {
} }
func (s *HMACSigner) Verify(tokenStr string) (jwt.Claims, error) { func (s *HMACSigner) Verify(tokenStr string) (jwt.Claims, error) {
return parse(tokenStr, jwt.SigningMethodHS256, s.secret) return Parse(tokenStr, jwt.SigningMethodHS256, s.secret)
} }