Skip to content

Instantly share code, notes, and snippets.

@gufranmirza
Created August 11, 2019 17:49
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 gufranmirza/4d0f4518941fba458fe7ff9f506158e6 to your computer and use it in GitHub Desktop.
Save gufranmirza/4d0f4518941fba458fe7ff9f506158e6 to your computer and use it in GitHub Desktop.
var albums []Album = []Album{
Album{
ID: "ts-fearless",
Artist: "1",
Title: "Fearless",
Year: "2008",
Type: "album",
},
}
var artists []Artist = []Artist{
Artist{
ID: "1",
Name: "Taylor Swift",
Type: "artist",
},
}
var songs []Song = []Song{
Song{
ID: "1",
Album: "ts-fearless",
Title: "Fearless",
Duration: "4:01",
Type: "song",
},
Song{
ID: "2",
Album: "ts-fearless",
Title: "Fifteen",
Duration: "4:54",
Type: "song",
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment