Files
2026-07-13 12:08:39 +08:00

8 lines
206 B
Go

package cli
import "errors"
// ErrUnauthorized is returned when a non-admin user attempts to access a resource
// outside their permitted namespace scope.
var ErrUnauthorized = errors.New("unauthorized")