File size: 174 Bytes
03ba2cd | 1 2 3 4 5 6 7 | import type { PageLoad } from './$types';
import { validateApiKey } from '$lib/utils';
export const load: PageLoad = async ({ fetch }) => {
await validateApiKey(fetch);
};
|
03ba2cd | 1 2 3 4 5 6 7 | import type { PageLoad } from './$types';
import { validateApiKey } from '$lib/utils';
export const load: PageLoad = async ({ fetch }) => {
await validateApiKey(fetch);
};
|