This commit is contained in:
2026-05-03 17:01:46 +03:30
parent b5ad5420b2
commit 9c30295b4b
76 changed files with 7891 additions and 461 deletions

11
app/api/openapi/route.ts Normal file
View File

@@ -0,0 +1,11 @@
import { NextResponse } from "next/server";
import { openApiSpec } from "@/lib/openapi";
export async function GET() {
return NextResponse.json(openApiSpec, {
headers: {
"Cache-Control": "no-store",
},
});
}