summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index b5232ff..12e2f3c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,6 @@
 mod config;
 mod system;
+use system::Manager;
 
 use std::{fs, panic};
 use tokio::{runtime, task::JoinSet};
@@ -50,7 +51,7 @@ fn spawn_system(joinset: &mut JoinSet<String>, pool: &tokio::runtime::Runtime, s
 
         let _ = panic::catch_unwind(|| {
             thread_local_runtime.block_on(async {
-                let mut system = system::Manager::new(name.clone(), config);
+                let mut system = Manager::new(name.clone(), config);
                 system.start_clients().await;
             });
         });