This commit is contained in:
Fred KISSIE
2026-02-19 05:27:05 +01:00
parent ba9a0c5e3c
commit 267b40b73c
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { Request, Response, NextFunction } from "express";
import z from "zod";
const createResourcePolicyParamsSchema = z.strictObject({
orgId: z.string()
});
export async function createResourcePolicy(
req: Request,
res: Response,
next: NextFunction
) {}

View File

@@ -13,3 +13,4 @@
export * from "./getMaintenanceInfo";
export * from "./listResourcePolicies";
export * from "./createResourcePolicy";