Changed expiration field of LoginResult to i64
All checks were successful
Rust Build / Check (pull_request) Successful in 29s
Rust Build / Test Suite (pull_request) Successful in 30s
Rust Build / Rustfmt (pull_request) Successful in 32s
Rust Build / Clippy (pull_request) Successful in 34s
Rust Build / build (pull_request) Successful in 29s

This commit is contained in:
2025-04-06 20:39:56 -04:00
parent 6411133c95
commit bc46a75444

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 {