ok, implement sqlite

This commit is contained in:
Leon Serfaty G
2025-07-17 11:12:35 +00:00
parent 09e59d46bd
commit 5f38178a60
8 changed files with 391 additions and 45 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface User {
id: number;
email: string;
password?: string; // Should be handled securely, not sent to client
name: string;
}