Files
wishlist/src/routes/+page.server.ts
2025-11-25 16:08:50 +01:00

9 lines
175 B
TypeScript

import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async (event) => {
const session = await event.locals.auth();
return {
session
};
};