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

8 lines
195 B
TypeScript
Raw Normal View History

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