File size: 193 Bytes
4d35814
 
 
 
 
 
1
2
3
4
5
6
7
import type { PageLoad } from './$types';
import { validateApiKey } from '$lib/utils/api-key-validation';

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