Add playlists REST endpoint

This commit is contained in:
Deluan 2020-05-03 20:05:03 -04:00 committed by Deluan Quintão
parent 8e2480a82d
commit 4e613be960
4 changed files with 30 additions and 3 deletions

View file

@ -15,7 +15,7 @@ type Playlist struct {
}
type PlaylistRepository interface {
CountAll() (int64, error)
CountAll(options ...QueryOptions) (int64, error)
Exists(id string) (bool, error)
Put(pls *Playlist) error
Get(id string) (*Playlist, error)