9 lines
238 B
TypeScript
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"
|
|
});
|
|
}
|