wildebeest/functions/api/v1/blocks.ts

9 wiersze
197 B
TypeScript
Czysty Zwykły widok Historia

2023-01-11 09:15:38 +00:00
const headers = {
'content-type': 'application/json; charset=utf-8',
}
export const onRequest = async () => {
const out: Array<any> = []
return new Response(JSON.stringify(out), { headers })
}