Files
BA_TTS_Annotation_Plattform/src/app/route.ts
2026-02-27 13:18:49 +01:00

6 lines
134 B
TypeScript

import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello world!" });
}