feat: initial sketch with AI

This commit is contained in:
2026-08-21 17:09:32 +02:00
parent d3fe34cb22
commit 10aefdd655
40 changed files with 13491 additions and 459 deletions
+13
View File
@@ -0,0 +1,13 @@
export interface LoginPayload {
email: string
password: string
}
export interface RefreshPayload {
refresh_token: string
}
export interface TokenPair {
access_token: string
refresh_token: string
}