minecraft-clone / src /app /api /route.ts
TomatitoToho's picture
Upload src/app/api/route.ts with huggingface_hub
7231066 verified
Raw
History Blame Contribute Delete
134 Bytes
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello, world!" });
}