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