9 lines
143 B
Go
9 lines
143 B
Go
package auth
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrUnauthenticated = errors.New("unauthenticated")
|
|
ErrClaimNotFound = errors.New("claim not found")
|
|
)
|