1
0
mirror of https://github.com/thebaer/cdr.git synced 2024-11-15 01:31:01 +00:00
cdr/track.go

15 lines
131 B
Go
Raw Normal View History

package cdr
type (
Mixtape struct {
Tracks []Track
}
Track struct {
Title string
Artist string
Filename string
}
)