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

6 lines
124 B
TypeScript

import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ success: true });
}