feat(api): complete phase 9 mobile contracts

This commit is contained in:
poyrazavsever
2026-07-17 09:38:22 +03:00
parent 46a746d2d4
commit b04031a3e3
25 changed files with 4896 additions and 19 deletions
+17
View File
@@ -0,0 +1,17 @@
import { apiV1Error, apiV1Success } from "@/server/api/v1/responses";
import { getNetaInstanceMetadata } from "@/server/api/v1/runtime";
export const runtime = "nodejs";
export const dynamic = "force-dynamic";
export function GET() {
try {
return apiV1Success(getNetaInstanceMetadata(), {
headers: {
"Cache-Control": "public, max-age=60, stale-while-revalidate=300",
},
});
} catch (error) {
return apiV1Error(error);
}
}