Experiments with bleve, repositories and parsing itunes

This commit is contained in:
Deluan
2016-02-24 15:30:28 -05:00
parent c8b7695b09
commit 9a55fa1c64
8 changed files with 93 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
package models
import (
"time"
)
type MediaFile struct {
Id string
Path string
Album string
Artist string
Title string
CreatedAt time.Time
UpdatedAt time.Time
}