diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-01-26 22:00:28 +0100 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-01-26 22:00:28 +0100 |
| commit | 5807838b553bb8e3add15025925d5c60afd56cfc (patch) | |
| tree | ac0f23b8b2db6ff85420b9d86079f9e3452fc464 /server | |
| parent | 9e80b8cd1e44fcf863d926055d9fa458db46e0d3 (diff) | |
Small style fix
Diffstat (limited to 'server')
| -rw-r--r-- | server/src/auth.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/src/auth.rs b/server/src/auth.rs index 1b7ea89..919dd51 100644 --- a/server/src/auth.rs +++ b/server/src/auth.rs @@ -14,8 +14,7 @@ use rocket_db_pools::{sqlx, Connection, Database}; use std::borrow::Cow; use std::cmp::Ordering; use std::collections::BTreeMap; -use std::sync::Mutex; -use std::sync::OnceLock; +use std::sync::{Mutex, OnceLock}; use std::time::Instant; use time::Duration; use utoipa::openapi::security::{ApiKey, ApiKeyValue, SecurityScheme}; |
