mirror of
https://github.com/beilunyang/moemail.git
synced 2026-05-12 02:21:34 +08:00
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import { z } from "zod"
|
|
|
|
export const authSchema = z.object({
|
|
username: z.string().min(1, "用户名不能为空"),
|
|
password: z.string().min(8, "密码长度必须大于等于8位"),
|
|
})
|
|
|
|
export type AuthSchema = z.infer<typeof authSchema> |