Removed unused code

This commit is contained in:
Deluan
2016-03-23 12:00:13 -04:00
parent 0e1618a6ac
commit d57f51c7ac
5 changed files with 6 additions and 13 deletions
-1
View File
@@ -9,7 +9,6 @@ type ArtistRepository interface {
BaseRepository
Put(m *Artist) error
Get(id string) (*Artist, error)
GetByName(name string) (*Artist, error)
PurgeInactive(active Artists) ([]string, error)
}
-1
View File
@@ -3,7 +3,6 @@ package domain
import "errors"
type BaseRepository interface {
NewId(fields ...string) string
CountAll() (int64, error)
Exists(id string) (bool, error)
}