File size: 274 Bytes
7357f85
1778c9e
5acf3a4
 
 
1778c9e
 
5acf3a4
1
2
3
4
5
6
7
8
9
import type { PageLoad } from "./$types.js";
import type { ApiModelsResponse } from "./api/models/+server.js";

export const load: PageLoad = async ({ fetch }) => {
	const res = await fetch("/api/models");
	const json: ApiModelsResponse = await res.json();
	return json;
};