Update +server.ts

This commit is contained in:
Bradley Shellnut 2024-07-15 20:11:45 +00:00 committed by GitHub
parent d580c49dcd
commit a6c242752a
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({});
}