Files
sexy/packages/frontend/src/routes/me/+page.server.ts

9 lines
178 B
TypeScript
Raw Normal View History

2025-10-25 22:04:41 +02:00
import { getFolders } from "$lib/services";
export async function load({ locals, fetch }) {
return {
authStatus: locals.authStatus,
folders: await getFolders(fetch),
};
}