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