10 lines
205 B
TypeScript
10 lines
205 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
function handler() {
|
|
return NextResponse.json(
|
|
{ message: "Public Pong!" },
|
|
{ status: 200, statusText: "SUCCESS" }
|
|
);
|
|
}
|
|
|
|
export { handler as GET };
|