boredgame/src/routes/+page.server.ts

8 lines
No EOL
195 B
TypeScript

import type { PageServerLoad, Actions } from './$types';
export const actions: Actions = {
default: async ({ request, locals }): Promise<any> => {
// Do things in here
return {};
}
}