Adding refresh token

This commit is contained in:
2026-06-22 22:40:55 -04:00
parent 515c0c564b
commit 5f3e4dc64b
2 changed files with 15 additions and 1 deletions
+5
View File
@@ -110,6 +110,11 @@ pub mod auth {
Err(err) => Err(std::io::Error::other(err.to_string())),
}
}
pub async fn has_token_expired(token: &textsender_models::token::LoginResult) -> bool {
todo!("Need to finish this");
false
}
}