More slices instead of pointers of slice

This commit is contained in:
Deluan
2016-03-20 13:14:04 -04:00
parent 3f0030738a
commit 21b39d922c
15 changed files with 37 additions and 37 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ type PlaylistRepository interface {
BaseRepository
Put(m *Playlist) error
Get(id string) (*Playlist, error)
GetAll(options QueryOptions) (*Playlists, error)
GetAll(options QueryOptions) (Playlists, error)
PurgeInactive(active Playlists) ([]string, error)
}