Remove unneeded imports
This commit is contained in:
parent
acd37297fd
commit
6b1c913b5d
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ use tracing::{debug, error, info, warn};
|
|||
use url::Url;
|
||||
|
||||
use crate::client::HTTP_CLIENT;
|
||||
use crate::config::{ClientSecret, Config, UnstableOptions, VALIDATE_TOKENS};
|
||||
use crate::config::{ClientSecret, Config};
|
||||
use crate::state::{
|
||||
RwLockServerState, PREVIOUSLY_COMPROMISED, PREVIOUSLY_PAUSED, TLS_CERTS,
|
||||
TLS_PREVIOUSLY_CREATED, TLS_SIGNING_KEY,
|
||||
|
|
|
@ -2,7 +2,7 @@ use std::str::FromStr;
|
|||
use std::sync::atomic::{AtomicBool, Ordering};
|
||||
|
||||
use crate::client::HTTP_CLIENT;
|
||||
use crate::config::{ClientSecret, Config, UnstableOptions, OFFLINE_MODE, VALIDATE_TOKENS};
|
||||
use crate::config::{ClientSecret, Config, OFFLINE_MODE};
|
||||
use crate::ping::{Request, Response, CONTROL_CENTER_PING_URL};
|
||||
use arc_swap::ArcSwap;
|
||||
use once_cell::sync::OnceCell;
|
||||
|
|
Loading…
Reference in a new issue