emissary/internal/auth/error.go

9 lines
157 B
Go
Raw Normal View History

2024-02-26 18:20:40 +01:00
package auth
import "github.com/pkg/errors"
var (
ErrUnauthenticated = errors.New("unauthenticated")
ErrUnauthorized = errors.New(("unauthorized"))
)