chore: remove redundant comment

Signed-off-by: Deluan <deluan@navidrome.org>
This commit is contained in:
Deluan 2026-08-19 08:49:15 -04:00
parent 1f3034f022
commit 2dab4b4048

View File

@ -3,13 +3,11 @@ 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")
ErrValidation = errors.New("validation error")
// ErrPlaylistNotEditable: tracks are server-managed, so nobody can edit them (not an ACL failure).
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")
ErrValidation = errors.New("validation error")
ErrPlaylistNotEditable = errors.New("playlist tracks are not editable")
)