islandflow/apps/web/app/api/admin/synthetic/status/route.ts

9 lines
238 B
TypeScript

import { proxySyntheticAdminRequest } from "../shared";
export const dynamic = "force-dynamic";
export async function GET(): Promise<Response> {
return proxySyntheticAdminRequest("/admin/synthetic/status", {
method: "GET"
});
}