mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 07:57:19 -05:00
Add Next.js frontends with health endpoints
This commit is contained in:
8
apps/web/app/health/route.ts
Normal file
8
apps/web/app/health/route.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
import { NextResponse } from "next/server";
|
||||
|
||||
export async function GET() {
|
||||
return NextResponse.json({
|
||||
service: "blackroad-os-web",
|
||||
status: "ok"
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user