7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
import { error } from '@sveltejs/kit';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async () => {
|
|
throw error(400, 'No license specified');
|
|
}
|