Skip to content

Commit

Permalink
style: Remove unnecessary imports in the config module
Browse files Browse the repository at this point in the history
  • Loading branch information
tlater-famedly committed Jul 17, 2024
1 parent 31db625 commit 393cfc5
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/config.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
use std::{path::PathBuf, time::Duration};
use std::path::PathBuf;

use ldap_poller::{
config::TLSConfig, ldap::EntryStatus, AttributeConfig, Cache, CacheMethod, ConnectionConfig,
Ldap, SearchEntry, SearchEntryExt, Searches,
};
use ldap_poller::{config::TLSConfig, AttributeConfig, CacheMethod, ConnectionConfig, Searches};
use serde::Deserialize;
use tracing::level_filters::LevelFilter;

#[derive(Debug, Clone, Deserialize)]
pub struct Config {
Expand Down

0 comments on commit 393cfc5

Please sign in to comment.