Files
next-portfolio/src/app/api/status/route.ts
2024-03-29 12:52:08 +00:00

5 lines
142 B
TypeScript

import { NextResponse } from 'next/server';
export function GET(): Response {
return NextResponse.json({ status: 200 }, { status: 200 });
}