All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
import { getVorgaenge } from '$lib/server/vorgangService';
|
|
import { json } from '@sveltejs/kit';
|
|
|
|
export async function GET({ locals }) {
|
|
|
|
const vorgaenge = getVorgaenge();
|
|
|
|
return new Response(JSON.stringify(vorgaenge), {
|
|
status: 200
|
|
});
|
|
}
|