Files
portabase/app/api/health/route.ts
T

6 lines
124 B
TypeScript
Raw Normal View History

2026-05-17 09:33:53 +02:00
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ success: true });
}