aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-05-19 15:17:58 +0200
committerAlex Auvolat <alex@adnab.me>2022-05-19 15:17:58 +0200
commitf254f3370df1da79552401e54e50987aa59890ca (patch)
treee5dcd3164f2ee94126c072551e6b276e443139ed /src/main.rs
parent1dcb11643c783096e1b52bf48d6b76121504e6bd (diff)
downloadaerogramme-f254f3370df1da79552401e54e50987aa59890ca.tar.gz
aerogramme-f254f3370df1da79552401e54e50987aa59890ca.zip
cleanup
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index cf26ae1..04c0705 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -8,7 +8,6 @@ mod time;
mod uidindex;
use std::path::PathBuf;
-use std::sync::Arc;
use anyhow::{bail, Result};
use clap::{Parser, Subcommand};
@@ -18,8 +17,7 @@ use rusoto_signature::Region;
use config::*;
use cryptoblob::*;
-use login::{ldap_provider::*, static_provider::*, *};
-use mailbox::Mailbox;
+use login::{static_provider::*, *};
use server::Server;
#[derive(Parser, Debug)]