31 lines
872 B
JavaScript
31 lines
872 B
JavaScript
export async function GET() {
|
|
return new Response(JSON.stringify({
|
|
success: true,
|
|
pods: [
|
|
{
|
|
title: "Your daily pod",
|
|
date: new Date("2024-03-11")
|
|
},
|
|
{
|
|
title: "Your rewind pod",
|
|
date: new Date("2024-03-10")
|
|
},
|
|
{
|
|
title: "Your pod today",
|
|
date: new Date("2024-03-09")
|
|
},
|
|
{
|
|
title: "My daily pod",
|
|
date: new Date("2024-03-08")
|
|
},
|
|
{
|
|
title: "I'm just making up stuff at this point",
|
|
date: new Date("2024-03-07")
|
|
},
|
|
{
|
|
title: "Tried that last one to see how long it can be",
|
|
date: new Date("2024-03-06")
|
|
}
|
|
]
|
|
}))
|
|
} |