package music var ari = Artist{ Id: "arimelody", Name: "ari melody", Website: "https://arimelody.me", } var mellodoot = Artist{ Id: "mellodoot", Name: "mellodoot", Website: "https://mellodoot.com", } var zaire = Artist{ Id: "zaire", Name: "zaire", Website: "https://supitszaire.com", } var mae = Artist{ Id: "maetaylor", Name: "mae taylor", Website: "https://mae.wtf", } var loudar = Artist{ Id: "loudar", Name: "Loudar", Website: "https://alex.targoninc.com", } var red = Artist { Id: "smoljorb", Name: "smoljorb", } var placeholders = []MusicRelease{ { Id: "test", Title: "test album", Type: "album", ReleaseDate: make_date_work("18-Mar-2024"), Buyname: "go get it!!", Buylink: "https://arimelody.me/", Links: []MusicLink{ { Name: "youtube", Url: "https://youtu.be/dQw4w9WgXcQ", }, }, Description: `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas viverra ligula interdum, tempor metus venenatis, tempus est. Praesent semper vulputate nulla, a venenatis libero elementum id. Proin maximus aliquet accumsan. Integer eu orci congue, ultrices leo sed, maximus risus. Integer laoreet non urna non accumsan. Cras ut sollicitudin justo. Vivamus eu orci tempus, aliquet est rhoncus, tempus neque. Aliquam tempor sit amet nibh sed tempus. Nulla vitae bibendum purus. Sed in mi enim. Nam pharetra enim lorem, vel tristique diam malesuada a. Duis dignissim nunc mi, id semper ex tincidunt a. Sed laoreet consequat lacus a consectetur. Nulla est diam, tempus eget lacus ullamcorper, tincidunt faucibus ex. Duis consectetur felis sit amet ante fermentum interdum. Sed pulvinar laoreet tellus.`, Credits: []MusicCredit{ { Artist: &ari, Role: "having the swag", }, { Artist: &zaire, Role: "having the swag", }, { Artist: &mae, Role: "having the swag", }, { Artist: &loudar, Role: "having the swag", }, }, Tracks: []MusicTrack{ { Number: 0, Title: "track 1", Description: "sample track description", Lyrics: "sample lyrics for track 1!", PreviewUrl: "https://mellodoot.com/audio/preview/dream.webm", }, { Number: 1, Title: "track 2", Description: "sample track description", Lyrics: "sample lyrics for track 2!", PreviewUrl: "https://mellodoot.com/audio/preview/dream.webm", }, }, }, { Id: "dream", Title: "Dream", Type: "single", ReleaseDate: make_date_work("11-Nov-2022"), Artwork: "https://mellodoot.com/img/music_artwork/mellodoot_-_Dream.webp", Buylink: "https://arimelody.bandcamp.com/track/dream", Links: []MusicLink{ { Name: "spotify", Url: "https://open.spotify.com/album/5talRpqzjExP1w6j5LFIAh", }, { Name: "apple music", Url: "https://music.apple.com/ie/album/dream-single/1650037132", }, { Name: "soundcloud", Url: "https://soundcloud.com/arimelody/dream2022", }, { Name: "youtube", Url: "https://www.youtube.com/watch?v=nfFgtMuYAx8", }, }, Description: "living the dream 🌌 ✨", Credits: []MusicCredit{ { Artist: &mellodoot, Role: "vocals", }, { Artist: &mellodoot, Role: "production", }, { Artist: &mellodoot, Role: "artwork", }, }, Tracks: []MusicTrack{ { Number: 0, Title: "Dream", Description: "no description here!", Lyrics: `the truth is what you make of it in the end, what you spend, is the end of it when you're lost in the life the life that you created on your own i'm becoming one with the soul that i see in the mirror blending one and whole this time, i'm real i'm living the dream i'm living my best life running out of time i gotta make this right whenever you rise whenever you come down fall away from the light and then fall into our arms the truth is what you make of it in the end, what you spend, is the end of it when you're lost in the life the life that you created on your own i'm becoming one with the soul that i see in the mirror blending one and whole this time, i'm real`, PreviewUrl: "https://mellodoot.com/audio/preview/dream.webm", }, }, }, }