feat: Chapters Editor (init) [copy from video editor]

This commit is contained in:
Yiannis Christodoulou
2025-07-27 23:24:45 +03:00
parent e65e8c2055
commit 8a87aad647
59 changed files with 35922 additions and 0 deletions
@@ -0,0 +1,9 @@
import { z } from "zod";
export const insertUserSchema = z.object({
username: z.string(),
password: z.string(),
});
export type InsertUser = z.infer<typeof insertUserSchema>;
export type User = InsertUser & { id: number };