mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
commit
e214b340f4
2 changed files with 12 additions and 0 deletions
|
|
@ -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({});
|
||||
}
|
||||
|
|
@ -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({});
|
||||
}
|
||||
Loading…
Reference in a new issue