mirror of
https://github.com/fosrl/pangolin.git
synced 2026-05-07 00:39:53 +00:00
13 lines
275 B
TypeScript
13 lines
275 B
TypeScript
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
|
|
) {}
|