Initial support for playlists. Missing permissions

This commit is contained in:
Deluan 2020-01-21 16:35:57 -05:00
parent 3a44f37622
commit 57fcdac428
6 changed files with 117 additions and 36 deletions

View file

@ -8,15 +8,16 @@ type Playlist struct {
Duration int
Owner string
Public bool
Tracks []string
Tracks MediaFiles
}
type PlaylistRepository interface {
CountAll() (int64, error)
Exists(id string) (bool, error)
Put(m *Playlist) error
Put(pls *Playlist) error
Get(id string) (*Playlist, error)
GetAll(options ...QueryOptions) (Playlists, error)
Delete(id string) error
}
type Playlists []Playlist