Update +server.ts

This commit is contained in:
Bradley Shellnut 2024-07-15 19:55:31 +00:00 committed by GitHub
parent 513cab891f
commit d580c49dcd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,6 @@
import { error, json } from '@sveltejs/kit';
export async function GET({ url, locals, params }) {
const searchParams = Object.fromEntries(url.searchParams);
return json({});
}