mirror of
https://github.com/jcreek/SvelteKitSaasBoilerplate.git
synced 2026-07-15 20:13:50 +00:00
10 lines
176 B
TypeScript
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
|
|
}
|