commit lib

This commit is contained in:
Brandon Egger
2023-05-21 22:10:05 -05:00
parent 9fb09d9585
commit e6fdbf714d
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,8 @@
import * as z from "zod";
export const loginSchema = z.object({
username: z.string(),
password: z.string(),
});
export type LoginInput = z.infer<typeof loginSchema>;