import { getEvents, getGroupEvents } from '$lib/Database/SB/events'; export const GET = async ({ url }) => Response.json( url.searchParams.get('group') ? await getGroupEvents(url.searchParams.get('group') || '') : await getEvents() );