mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-05-15 15:09:31 +07:00
7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
import { z } from "zod";
|
|
|
|
export const loginSchema = z.object({
|
|
username: z.string().min(1, "Username is required"),
|
|
password: z.string().min(1, "Password is required"),
|
|
});
|