Implemented first repository using tiedot

This commit is contained in:
Deluan
2016-02-26 01:32:31 -05:00
parent e760952263
commit 85ddd19c3d
18 changed files with 279 additions and 53 deletions
+12
View File
@@ -0,0 +1,12 @@
package models
type Album struct {
Id string
Name string
Artist *Artist
CoverArtPath string
Year int
Compilation bool
Rating int
}
+6
View File
@@ -0,0 +1,6 @@
package models
type Artist struct {
Id string
Name string
}
+1 -3
View File
@@ -1,8 +1,6 @@
package models
import (
"time"
)
import "time"
type MediaFile struct {
Id string