vk_site / src /app /api /route.ts
Levin-Aleksey's picture
Initial commit
52d998d
raw
history blame contribute delete
134 Bytes
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello, world!" });
}