Initial commit

This commit is contained in:
2026-05-20 00:18:07 +08:00
commit e2bf594719
58 changed files with 5885 additions and 0 deletions

17
src/shared/api.ts Normal file
View File

@@ -0,0 +1,17 @@
export interface ApiErrorResponse {
error: string;
status: number;
}
export interface HealthResponse {
ok: true;
service: string;
timestamp: string;
}
export type RuntimeMode = "development" | "production" | "test";
// ==========================================
// 在此定义你的业务类型
// 前后端共享的类型都放在这个文件中
// ==========================================