2517be1
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); };