Files
homepage/src/routes/cospend/+layout.server.ts

8 lines
158 B
TypeScript

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