mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-17 06:30:50 +01:00
8 lines
175 B
TypeScript
8 lines
175 B
TypeScript
import { z } from 'zod'
|
|
|
|
export const vaultSchema = {
|
|
password: z.string().min(6).max(255),
|
|
name: z.string().min(1).max(255),
|
|
path: z.string().min(4).endsWith('.db'),
|
|
}
|