feat: connect admin session and public config endpoints

This commit is contained in:
Lan
2026-06-03 02:52:38 +08:00
parent 2a73e24d1c
commit 46e75f94b2
7 changed files with 83 additions and 7 deletions
+1
View File
@@ -1,6 +1,7 @@
export interface ApiResponse<T = unknown> {
code: number
message?: string
msg?: string
detail?: T
}
+2
View File
@@ -2,4 +2,6 @@ export interface AdminUser {
id: string
username: string
token: string
token_type?: string
expires_at?: number
}