mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-06-18 06:39:32 +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"),
|
||
|
});
|