mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
8 lines
No EOL
195 B
TypeScript
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 {};
|
|
}
|
|
} |