import { z } from "zod"; export const insertUserSchema = z.object({ username: z.string(), password: z.string(), }); export type InsertUser = z.infer; export type User = InsertUser & { id: number };