completely refactor the backend

This commit is contained in:
2025-07-15 06:14:57 +02:00
parent 85bc353a5a
commit 5631158b72
51 changed files with 3563 additions and 526 deletions

4
frontend/types/api.ts Normal file
View File

@@ -0,0 +1,4 @@
export type ApiResponse<T> = {
status: number;
data: T;
};