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

7 lines
133 B
TypeScript
Raw Normal View History

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