Files
SvelteKitSaasBoilerplate/src/routes/api/somebackendfunction/+server.ts
T
2024-04-30 19:05:38 +01:00

10 lines
176 B
TypeScript

import { json } from '@sveltejs/kit';
export const GET = async () => {
return json(await getSomeData());
};
async function getSomeData() {
// Do your async fetching here
}