mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 03:57:13 -05:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({
|
|
service: "blackroad-os-web",
|
|
status: "ok"
|
|
});
|
|
}
|