mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-05-15 15:09:31 +07:00
8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
import { z } from "zod";
|
|
|
|
export const createBucketSchema = z.object({
|
|
globalAlias: z.string().min(1, "Bucket Name is required"),
|
|
});
|
|
|
|
export type CreateBucketSchema = z.infer<typeof createBucketSchema>;
|