mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-06-18 01:29:37 +07:00
11 lines
198 B
TypeScript
11 lines
198 B
TypeScript
|
import { z } from "zod";
|
||
|
|
||
|
export const loginSchema = z.object({
|
||
|
username: z.string(),
|
||
|
password: z.string(),
|
||
|
});
|
||
|
|
||
|
export const loginResultSchema = z.object({
|
||
|
sessionId: z.string().min(40),
|
||
|
});
|