theNorms's picture
Upload project files
d0aaa68 verified
raw
history blame contribute delete
134 Bytes
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello, world!" });
}