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

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