kepler-chat/src/routes/+layout.server.ts
Thomas G. Lopes f63c0b0ba0
api keys (#3)
Co-authored-by: Aidan Bleser <aidanbleser35@gmail.com>
2025-06-14 04:40:01 -07:00

9 lines
180 B
TypeScript

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