mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
11 lines
306 B
Go
11 lines
306 B
Go
package model
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("data not found")
|
|
ErrInvalidAuth = errors.New("invalid authentication")
|
|
ErrNotAuthorized = errors.New("not authorized")
|
|
ErrExpired = errors.New("access expired")
|
|
ErrNotAvailable = errors.New("functionality not available")
|
|
)
|