diff options
| author | Arne Rief <riearn@proton.me> | 2025-12-22 21:20:39 +0100 |
|---|---|---|
| committer | Arne Rief <riearn@proton.me> | 2025-12-22 21:20:39 +0100 |
| commit | e836e7dd4ed5e9fa60e949d159100040b22a8f48 (patch) | |
| tree | a11954c06e55e8ef53fcb634fa5954dfcb42ffc3 /backend/src/types/user.ts | |
| parent | d1b64ddd78d8b8dc3eca76038a75071ab2a575d9 (diff) | |
Movement simulator for all and single robot, project v1 ready
Diffstat (limited to 'backend/src/types/user.ts')
| -rw-r--r-- | backend/src/types/user.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/backend/src/types/user.ts b/backend/src/types/user.ts index b2c7ffc..15b24c3 100644 --- a/backend/src/types/user.ts +++ b/backend/src/types/user.ts @@ -16,3 +16,10 @@ export type DatabaseUser = { password_hash: string; created_at: string; }; + +export type LoginResponse = { + message: string; + user: AuthorizedUser; + token: string; +}; + |
