Removed unused code
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
||||
|
||||
@@ -3,7 +3,6 @@ package domain
|
||||
import "errors"
|
||||
|
||||
type BaseRepository interface {
|
||||
NewId(fields ...string) string
|
||||
CountAll() (int64, error)
|
||||
Exists(id string) (bool, error)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user