Private
Public Access
1
0

cargo clippy/fix

This commit is contained in:
2025-04-28 16:06:51 -07:00
parent c189e5f9e3
commit e7d837d68c
13 changed files with 43 additions and 61 deletions

View File

@@ -42,6 +42,12 @@ pub struct InMemoryTokenStore {
token: Option<JwtToken>,
}
impl Default for InMemoryTokenStore {
fn default() -> Self {
Self::new()
}
}
impl InMemoryTokenStore {
pub fn new() -> Self {
Self { token: None }