From f70787201f77f2cc73fa3d64dc00a48d53e7cc6c Mon Sep 17 00:00:00 2001 From: Zhang Jingqiang Date: Thu, 8 Aug 2024 15:27:26 +0800 Subject: [PATCH] fix import order --- g3proxy/src/auth/source/mod.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/g3proxy/src/auth/source/mod.rs b/g3proxy/src/auth/source/mod.rs index 553837cc..1c1f49f3 100644 --- a/g3proxy/src/auth/source/mod.rs +++ b/g3proxy/src/auth/source/mod.rs @@ -14,12 +14,13 @@ * limitations under the License. */ +use std::sync::Arc; +use std::time::Duration; + use ahash::AHashMap; use arc_swap::ArcSwap; use chrono::{DateTime, Utc}; use log::warn; -use std::sync::Arc; -use std::time::Duration; use tokio::sync::{mpsc, oneshot}; use super::{User, UserGroupConfig};