Files
homepage/src/routes/cospend/+layout.server.ts
Alexander Bocken 915f27d275
Some checks failed
CI / update (push) Failing after 4s
add user to cospend header
2025-09-12 17:29:49 +02:00

8 lines
158 B
TypeScript

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