8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import type { PageServerLoad } from "./$types"
|
|
|
|
export const load : PageServerLoad = (async ({locals}) => {
|
|
return {
|
|
session: await locals.auth(),
|
|
}
|
|
});
|