started integrating auth with lucia

This commit is contained in:
Milo Schwartz
2024-10-01 20:48:03 -04:00
parent a33a8d7367
commit fc5dca136f
20 changed files with 1341 additions and 61 deletions

9
server/types/Response.ts Normal file
View File

@@ -0,0 +1,9 @@
export interface ResponseT<T> {
data: T | null;
success: boolean;
error: boolean;
message: string;
status: number;
}
export default ResponseT;