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.

15 rivejä
131 B

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