style: format code and improve readability

This commit is contained in:
Constantin Simonis 2025-05-07 13:42:41 +02:00
commit 51540c930b
No known key found for this signature in database
GPG key ID: 3878FF77C24AF4D2
12 changed files with 143 additions and 94 deletions

View file

@ -1,4 +1,4 @@
export interface AuthResponse {
token: string;
tokenType: string;
}
}

View file

@ -1,4 +1,4 @@
export interface LoginRequest {
usernameOrEmail: string;
password: string;
}
}

View file

@ -2,4 +2,4 @@ export interface RegisterRequest {
email: string;
username: string;
password: string;
}
}