1
0
mirror of https://github.com/thebaer/cdr.git synced 2024-11-15 01:31:01 +00:00
cdr/track.go
Matt Baer 3125d14d23 Move track information into struct
This adds a NewTrack func that creates the struct, and we now use this in RenameTrack().
2020-02-25 23:23:03 -05:00

15 lines
131 B
Go

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