More slices instead of pointers of slice

This commit is contained in:
Deluan
2016-03-19 22:58:20 -04:00
parent bd07c74acd
commit 27b7b7ce08
5 changed files with 40 additions and 40 deletions
+2 -2
View File
@@ -28,8 +28,8 @@ type AlbumRepository interface {
Put(m *Album) error
Get(id string) (*Album, error)
FindByArtist(artistId string) (*Albums, error)
GetAll(QueryOptions) (*Albums, error)
GetAll(QueryOptions) (Albums, error)
PurgeInactive(active Albums) ([]string, error)
GetAllIds() (*[]string, error)
GetAllIds() ([]string, error)
GetStarred(QueryOptions) (*Albums, error)
}