Add license information

This commit is contained in:
Luca Bosin
2023-08-28 22:47:55 +02:00
parent ec6d44531b
commit 7dcb27eede
8 changed files with 133 additions and 34 deletions

View File

@ -0,0 +1,6 @@
import { error } from '@sveltejs/kit';
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async () => {
throw error(400, 'No license specified');
}