package auth import "github.com/pkg/errors" var ( ErrUnauthenticated = errors.New("unauthenticated") ErrUnauthorized = errors.New(("unauthorized")) )