mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
27 lines
613 B
Go
27 lines
613 B
Go
package model
|
|
|
|
type Artist struct {
|
|
ID string
|
|
Name string
|
|
AlbumCount int
|
|
}
|
|
type Artists []Artist
|
|
|
|
type ArtistIndex struct {
|
|
ID string
|
|
Artists Artists
|
|
}
|
|
type ArtistIndexes []ArtistIndex
|
|
|
|
type ArtistRepository interface {
|
|
CountAll() (int64, error)
|
|
Exists(id string) (bool, error)
|
|
Put(m *Artist) error
|
|
Get(id string) (*Artist, error)
|
|
GetStarred(userId string, options ...QueryOptions) (Artists, error)
|
|
SetStar(star bool, ids ...string) error
|
|
Search(q string, offset int, size int) (Artists, error)
|
|
Refresh(ids ...string) error
|
|
GetIndex() (ArtistIndexes, error)
|
|
PurgeEmpty() error
|
|
}
|