add internal token erorrs

This commit is contained in:
2026-01-03 15:45:34 +02:00
parent af7770eb06
commit c718db565e

7
internal/token/errors.go Normal file
View File

@@ -0,0 +1,7 @@
package token
import "fmt"
var (
ErrTokenIsRevoked = fmt.Errorf("token is revoked")
)