mirror of
https://github.com/khairul169/vaulterm.git
synced 2025-04-28 16:49:39 +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),
|
|
});
|