auth + player
This commit is contained in:
31
src/routes/api/pods/+server.js
Normal file
31
src/routes/api/pods/+server.js
Normal file
@@ -0,0 +1,31 @@
|
||||
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")
|
||||
}
|
||||
]
|
||||
}))
|
||||
}
|
Reference in New Issue
Block a user