mirror of
https://github.com/thebaer/cdr.git
synced 2024-11-15 01:31:01 +00:00
Matt Baer
3125d14d23
This adds a NewTrack func that creates the struct, and we now use this in RenameTrack().
15 lines
131 B
Go
15 lines
131 B
Go
package cdr
|
|
|
|
type (
|
|
Mixtape struct {
|
|
Tracks []Track
|
|
}
|
|
|
|
Track struct {
|
|
Title string
|
|
Artist string
|
|
|
|
Filename string
|
|
}
|
|
)
|