mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-12-16 12:31:05 +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>;
|