refactor Network

This commit is contained in:
Timi
2026-07-29 15:04:47 +08:00
parent ff3297e879
commit 8b24804b22
6 changed files with 106 additions and 62 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export type Model = {
deletedAt?: number;
}
export type Response<T> = {
export type ApiResponse<T> = {
code: number;
msg?: string;
data: T;