sofia-cloud / src /app /api /route.ts
Gmagl
Add Sofia Cloud complete files
333c51a
raw
history blame
134 Bytes
import { NextResponse } from "next/server";
export async function GET() {
return NextResponse.json({ message: "Hello, world!" });
}