1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee
Files
inke/apps/web/app/api/status/route.ts
2023-11-10 14:59:47 +08:00

10 lines
176 B
TypeScript

import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({
subject: "website",
status: "live",
color: "green",
});
}