Started the implementation of getMusicDirectory. Probably will need to introduce a new 'service' layer...

This commit is contained in:
Deluan
2016-03-02 20:00:55 -05:00
parent 68786d4b39
commit 9577d9ae87
15 changed files with 166 additions and 16 deletions
+1
View File
@@ -3,4 +3,5 @@ package domain
type BaseRepository interface {
NewId(fields ...string) string
CountAll() (int, error)
Exists(id string) (bool, error)
}