Mirror of a distributed, offline-first bug tracker embedded in git
1package auth 2 3import "errors" 4 5// ErrNotAuthenticated is returned to the client if the user requests an action requiring authentication, and they are not authenticated. 6var ErrNotAuthenticated = errors.New("not authenticated or read-only")