mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Removed composition from model, makes it more readable
This commit is contained in:
parent
0ea2bd79d9
commit
19765b0ad8
6 changed files with 10 additions and 10 deletions
|
@ -12,7 +12,8 @@ type Playlist struct {
|
|||
}
|
||||
|
||||
type PlaylistRepository interface {
|
||||
BaseRepository
|
||||
CountAll() (int64, error)
|
||||
Exists(id string) (bool, error)
|
||||
Put(m *Playlist) error
|
||||
Get(id string) (*Playlist, error)
|
||||
GetAll(options ...QueryOptions) (Playlists, error)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue