navidrome/model/base.go
2020-01-14 22:22:34 -05:00

21 lines
274 B
Go

package model
import "errors"
type BaseRepository interface {
CountAll() (int64, error)
Exists(id string) (bool, error)
}
var (
ErrNotFound = errors.New("data not found")
)
type QueryOptions struct {
SortBy string
Alpha bool
Desc bool
Offset int
Size int
}