types.go 130 B

12345678
  1. package read
  2. type Song struct {
  3. Title, Artist, Album string
  4. Duration int
  5. DurationOk bool
  6. BasePath, RelativePath string
  7. }