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

6 lines
137 B
TypeScript
Raw Normal View History

export const actions: Actions = {
default: async ({ request, locals }): Promise<any> => {
// Do things in here
return {};
}
}