Rename domain to model

This commit is contained in:
Deluan
2020-01-14 22:22:34 -05:00
parent 25686c1742
commit 0ea2bd79d9
54 changed files with 404 additions and 404 deletions
+13
View File
@@ -0,0 +1,13 @@
package model
type MediaFolder struct {
ID string
Name string
Path string
}
type MediaFolders []MediaFolder
type MediaFolderRepository interface {
GetAll() (MediaFolders, error)
}