blob: 8e5326c6bd63f8e4c42fb29547d80d42e5afd73d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { NextRequest, NextResponse } from "next/server";
export const GET = async (_req: NextRequest) => {
return NextResponse.json({
status: "ok",
message: "Web app is working",
});
};
|