Changed expiration field of LoginResult to i64 (#36)

Reviewed-on: #36
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
This commit is contained in:
phoenix
2025-04-07 00:47:51 +00:00
committed by phoenix
parent 6411133c95
commit 6467521a02
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ pub struct LoginResult {
pub token: String,
#[serde(alias = "token_type")]
pub token_type: String,
pub expiration: i32,
pub expiration: i64,
}
impl Default for LoginResult {