feat(auth): implement login API integration with backend

This commit is contained in:
Quicy
2026-01-29 14:59:21 +08:00
parent 8c7d578657
commit bc63e85d13
28 changed files with 834 additions and 86 deletions
+6 -2
View File
@@ -2,9 +2,13 @@ export interface robot{
description: string
time: Date,
id: string | number,
type: string
type: string,
action:'robot'
}
export interface user{
description: string, time: Date, id: number | string
description: string,
time: Date,
id: number | string,
action:'user'
}