Includes FastAPI+Jinja2+HTMX+SQLite implementation with seed categories, plus deployment templates. Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
199 B
TypeScript
11 lines
199 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export async function GET() {
|
|
return NextResponse.json({
|
|
ok: true,
|
|
service: "all prompt (모프)",
|
|
time: new Date().toISOString(),
|
|
});
|
|
}
|
|
|