Making sure the repositories implement their full interfaces

This commit is contained in:
Deluan
2016-03-03 01:24:28 -05:00
parent f01a5f143d
commit ad0a91fba5
6 changed files with 12 additions and 0 deletions
+2
View File
@@ -48,3 +48,5 @@ func (a byArtistName) Swap(i, j int) {
func (a byArtistName) Less(i, j int) bool {
return utils.NoArticle(a[i].Artist) < utils.NoArticle(a[j].Artist)
}
var _ domain.ArtistIndexRepository = (*artistIndexRepository)(nil)