Static site generator for making web mixtapes in 2020.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
144 B

  1. package cdr
  2. type (
  3. Mixtape struct {
  4. Tracks []Track
  5. }
  6. Track struct {
  7. Num int
  8. Title string
  9. Artist string
  10. Filename string
  11. }
  12. )