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

1
.gitignore vendored
View File

@ -58,7 +58,6 @@ dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/

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>;