7 lines
176 B
TypeScript
7 lines
176 B
TypeScript
|
|
import { adminListVideos } from "$lib/services";
|
||
|
|
|
||
|
|
export async function load({ fetch }) {
|
||
|
|
const videos = await adminListVideos(fetch).catch(() => []);
|
||
|
|
return { videos };
|
||
|
|
}
|