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