llama.cpp/tools/server/webui/src/routes/+page.ts

7 lines
174 B
TypeScript

import type { PageLoad } from './$types';
import { validateApiKey } from '$lib/utils';
export const load: PageLoad = async ({ fetch }) => {
await validateApiKey(fetch);
};