aboutsummaryrefslogtreecommitdiff
path: root/src/app/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/mod.rs')
-rw-r--r--src/app/mod.rs10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/app/mod.rs b/src/app/mod.rs
index 27846065..1cb32499 100644
--- a/src/app/mod.rs
+++ b/src/app/mod.rs
@@ -4,16 +4,12 @@
use std::collections::HashMap;
use std::sync::Arc;
-use tokio::sync::mpsc::channel;
-use tokio::sync::mpsc::Receiver;
-use tokio::sync::mpsc::Sender;
+use tokio::sync::mpsc::{channel, Receiver, Sender};
use tokio::sync::Mutex;
use tokio::task::JoinHandle;
-use crate::config::AccountConfig;
-use crate::config::Config;
-use crate::worker::Worker;
-use crate::worker::WorkerMessage;
+use crate::config::{AccountConfig, Config};
+use crate::worker::{Worker, WorkerMessage};
pub struct App {
config: Arc<Mutex<Config>>,