aboutsummaryrefslogtreecommitdiff
path: root/llama.cpp/tools/server/webui/src/routes/+page.ts
blob: 7905af6b5134393d688af4b38574954e13d84417 (plain)
1
2
3
4
5
6
import type { PageLoad } from './$types';
import { validateApiKey } from '$lib/utils';

export const load: PageLoad = async ({ fetch }) => {
	await validateApiKey(fetch);
};