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