Files
tatort/src/routes/api/list/+server.ts
Chi Cong Tran 98794a29e1
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good
fix SonarQube issues (unused imports, commented file)
2025-09-05 08:29:38 +02:00

11 lines
208 B
TypeScript

import { getVorgaenge } from '$lib/server/vorgangService';
export async function GET({ locals }) {
const vorgaenge = getVorgaenge();
return new Response(JSON.stringify(vorgaenge), {
status: 200
});
}