Playlists working

This commit is contained in:
Deluan 2016-03-09 18:28:11 -05:00
parent 4bb4fc0cb8
commit 2214e4bd4f
8 changed files with 179 additions and 41 deletions

29
engine/common.go Normal file
View file

@ -0,0 +1,29 @@
package engine
import (
"errors"
"time"
)
type Child struct {
Id string
Title string
IsDir bool
Parent string
Album string
Year int
Artist string
Genre string
CoverArt string
Starred time.Time
Track int
Duration int
Size string
Suffix string
BitRate int
ContentType string
}
var (
DataNotFound = errors.New("Data Not Found")
)