···11+package music
22+33+var ari = Artist{
44+ Id: "arimelody",
55+ Name: "ari melody",
66+ Website: "https://arimelody.me",
77+}
88+var mellodoot = Artist{
99+ Id: "mellodoot",
1010+ Name: "mellodoot",
1111+ Website: "https://mellodoot.com",
1212+}
1313+var zaire = Artist{
1414+ Id: "zaire",
1515+ Name: "zaire",
1616+ Website: "https://supitszaire.com",
1717+}
1818+var mae = Artist{
1919+ Id: "maetaylor",
2020+ Name: "mae taylor",
2121+ Website: "https://mae.wtf",
2222+}
2323+var loudar = Artist{
2424+ Id: "loudar",
2525+ Name: "Loudar",
2626+ Website: "https://alex.targoninc.com",
2727+}
2828+var red = Artist {
2929+ Id: "smoljorb",
3030+ Name: "smoljorb",
3131+}
3232+3333+var placeholders = []MusicRelease{
3434+ {
3535+ Id: "test",
3636+ Title: "test album",
3737+ Type: "album",
3838+ ReleaseDate: make_date_work("18-Mar-2024"),
3939+ Buyname: "go get it!!",
4040+ Buylink: "https://arimelody.me/",
4141+ Links: []MusicLink{
4242+ {
4343+ Name: "youtube",
4444+ Url: "https://youtu.be/dQw4w9WgXcQ",
4545+ },
4646+ },
4747+ Description:
4848+ `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.`,
4949+ Credits: []MusicCredit{
5050+ {
5151+ Artist: &ari,
5252+ Role: "having the swag",
5353+ },
5454+ {
5555+ Artist: &zaire,
5656+ Role: "having the swag",
5757+ },
5858+ {
5959+ Artist: &mae,
6060+ Role: "having the swag",
6161+ },
6262+ {
6363+ Artist: &loudar,
6464+ Role: "having the swag",
6565+ },
6666+ },
6767+ Tracks: []MusicTrack{
6868+ {
6969+ Number: 0,
7070+ Title: "track 1",
7171+ Description: "sample track description",
7272+ Lyrics: "sample lyrics for track 1!",
7373+ PreviewUrl: "https://mellodoot.com/audio/preview/dream.webm",
7474+ },
7575+ {
7676+ Number: 1,
7777+ Title: "track 2",
7878+ Description: "sample track description",
7979+ Lyrics: "sample lyrics for track 2!",
8080+ PreviewUrl: "https://mellodoot.com/audio/preview/dream.webm",
8181+ },
8282+ },
8383+ },
8484+ {
8585+ Id: "dream",
8686+ Title: "Dream",
8787+ Type: "single",
8888+ ReleaseDate: make_date_work("11-Nov-2022"),
8989+ Artwork: "https://mellodoot.com/img/music_artwork/mellodoot_-_Dream.webp",
9090+ Buylink: "https://arimelody.bandcamp.com/track/dream",
9191+ Links: []MusicLink{
9292+ {
9393+ Name: "spotify",
9494+ Url: "https://open.spotify.com/album/5talRpqzjExP1w6j5LFIAh",
9595+ },
9696+ {
9797+ Name: "apple music",
9898+ Url: "https://music.apple.com/ie/album/dream-single/1650037132",
9999+ },
100100+ {
101101+ Name: "soundcloud",
102102+ Url: "https://soundcloud.com/arimelody/dream2022",
103103+ },
104104+ {
105105+ Name: "youtube",
106106+ Url: "https://www.youtube.com/watch?v=nfFgtMuYAx8",
107107+ },
108108+ },
109109+ Description: "living the dream 🌌 ✨",
110110+ Credits: []MusicCredit{
111111+ {
112112+ Artist: &mellodoot,
113113+ Role: "vocals",
114114+ },
115115+ {
116116+ Artist: &mellodoot,
117117+ Role: "production",
118118+ },
119119+ {
120120+ Artist: &mellodoot,
121121+ Role: "artwork",
122122+ },
123123+ },
124124+ Tracks: []MusicTrack{
125125+ {
126126+ Number: 0,
127127+ Title: "Dream",
128128+ Description: "no description here!",
129129+ Lyrics:
130130+ `the truth is what you make of it
131131+ in the end, what you spend, is the end of it
132132+ when you're lost in the life
133133+ the life that you created on your own
134134+ i'm becoming one
135135+ with the soul that i see in the mirror
136136+ blending one and whole
137137+ this time, i'm real
138138+139139+ i'm living the dream
140140+ i'm living my best life
141141+ running out of time
142142+ i gotta make this right
143143+ whenever you rise
144144+ whenever you come down
145145+ fall away from the light
146146+ and then fall into our arms
147147+148148+ the truth is what you make of it
149149+ in the end, what you spend, is the end of it
150150+ when you're lost in the life
151151+ the life that you created on your own
152152+ i'm becoming one
153153+ with the soul that i see in the mirror
154154+ blending one and whole
155155+ this time, i'm real`,
156156+ PreviewUrl: "https://mellodoot.com/audio/preview/dream.webm",
157157+ },
158158+ },
159159+ },
160160+}
161161+