Files
evilspins/server/api/artists.ts
valere 16813bf1de
All checks were successful
Deploy App / build (push) Successful in 49s
Deploy App / test (push) Successful in 50s
Deploy App / deploy (push) Successful in 1m33s
server fix: import eventHandler
2025-09-18 12:58:10 +02:00

73 lines
1.5 KiB
TypeScript

import { eventHandler } from 'h3'
export default eventHandler(() => {
return [
{
id: 0,
name: "L'efondras",
url: "https://leffondras.bandcamp.com/music",
coverId: "0024705317"
},
{
id: 1,
name: "The kundalini genie",
url: "https://the-kundalini-genie.bandcamp.com",
coverId: "0012045550"
},
{
id: 2,
name: "Fontaines D.C.",
url: "https://fontainesdc.bandcamp.com",
coverId: "0027327090"
},
{
id: 3,
name: "Fontanarosa",
url: "https://fontanarosa.bandcamp.com",
coverId: "0035380235",
},
{
id: 4,
name: "Johnny mafia",
url: "https://johnnymafia.bandcamp.com",
coverId: "0035009392",
},
{
id: 5,
name: "New candys",
url: "https://newcandys.bandcamp.com",
coverId: "0033518637",
},
{
id: 6,
name: "Magic shoppe",
url: "https://magicshoppe.bandcamp.com",
coverId: "0030748374"
},
{
id: 7,
name: "Les jaguars",
url: "https://radiomartiko.bandcamp.com/album/surf-qu-b-cois",
coverId: "0016551336",
},
{
id: 8,
name: "TRAAMS",
url: "https://traams.bandcamp.com",
coverId: "0028348410",
},
{
id: 9,
name: "Blue orchid",
url: "https://blue-orchid.bandcamp.com",
coverId: "0034796193",
},
{
id: 10,
name: "I love UFO",
url: "https://bruitblanc.bandcamp.com",
coverId: "a2203158939",
}
]
})