aboutsummaryrefslogtreecommitdiff
path: root/src/routes/api/events/groups/+server.ts
blob: db50d0ad9002772e4a0a92ce08092e55993db477 (plain) (blame)
1
2
3
import { getGroups } from '$lib/Database/SB/groups';

export const GET = async () => Response.json(await getGroups());