Skip to content

Instantly share code, notes, and snippets.

@betandr
Created February 27, 2019 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save betandr/30d54e6ddbd1a788b3c87d280dcfff0b to your computer and use it in GitHub Desktop.
Save betandr/30d54e6ddbd1a788b3c87d280dcfff0b to your computer and use it in GitHub Desktop.
A Go tracks slice containing Go tracks.
var tracks = []*Track{
{Title: "Ready To Go", Artist: "Republica", Album: "Republica", Year: 1996, Length: length("5m01s")},
{Title: "Go", Artist: "Lizzo", Album: "Lizzobangers", Year: 2014, Length: length("3m45s")},
{Title: "Go Get It", Artist: "Slowdive", Album: "Slowdive", Year: 2017, Length: length("6m09s")},
{Title: "You Gotta Go!", Artist: "The Mighty Mighty Bosstones", Album: "A Jackknife to a Swan", Year: 2002, Length: length("2m43s")},
{Title: "Go Out", Artist: "Blur", Album: "The Magic Whip", Year: 2015, Length: length("4m41s")},
{Title: "Just Let Go", Artist: "Fischerspooner", Album: "Odyssey", Year: 2005, Length: length("4m15s")},
{Title: "Go It Alone", Artist: "Beck", Album: "Guero", Year: 2005, Length: length("4m09s")},
{Title: "I Let Go", Artist: "Eighteen Visions", Album: "Obsession", Year: 2004, Length: length("3m23s")},
{Title: "Why Let Go", Artist: "Pearl Jam", Album: "Ten", Year: 1991, Length: length("3m21s")},
{Title: "Go Next!", Artist: "SOIL&\"PIMP\"SESSIONS", Album: "Planet Pimp", Year: 2008, Length: length("4m59s")},
{Title: "Go!", Artist: "Public Service Broadcasting", Album: "The Race For Space", Year: 2015, Length: length("2m40s")},
{Title: "Day Go By", Artist: "Karen O", Album: "Crush Songs", Year: 2014, Length: length("2m16s")},
{Title: "(Come On) Let's Go!", Artist: "Smashing Pumpkins", Album: "Zeitgeist", Year: 2007, Length: length("3m19s")},
{Title: "Don't Let Go", Artist: "Warpaint", Album: "Heads Up", Year: 2016, Length: length("4h23s")},
{Title: "World Go 'Round", Artist: "No Doubt", Album: "Tragic Kingdom", Year: 1995, Length: length("4m09s")},
{Title: "The Go In The Go-For-It", Artist: "Grandaddy", Album: "", Year: 2003, Length: length("2m59s")},
{Title: "Lyrics to Go", Artist: "A Tribe Called Quest", Album: "Midnight Marauders", Year: 1993, Length: length("4m09s")},
{Title: "Boys Say Go!", Artist: "Depeche Mode", Album: "Speak & Spell", Year: 1981, Length: length("3m06s")},
{Title: "Have Another Go", Artist: "Acoustic Ladyland", Album: "Living with a Tiger", Year: 2009, Length: length("3m59s")},
{Title: "Go With The Flow", Artist: "Queens Of The Stone Age", Album: "Songs For The Deaf", Year: 2002, Length: length("3m08s")},
{Title: "Go", Artist: "blink-182", Album: "blink-182", Year: 2003, Length: length("1m53s")},
{Title: "Go", Artist: "Chemical Brothers", Album: "Born In The Echoes", Year: 2015, Length: length("4m20s")},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment