This commit is contained in:
Deluan
2016-03-02 13:18:39 -05:00
parent 9d41f5a39f
commit 4843ccb46c
42 changed files with 150 additions and 160 deletions
+2 -3
View File
@@ -2,15 +2,14 @@ package domain
type ArtistInfo struct {
ArtistId string
Artist string
Artist string
}
type ArtistIndex struct {
Id string
Id string
Artists []ArtistInfo
}
type ArtistIndexRepository interface {
BaseRepository
Put(m *ArtistIndex) error