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, 1 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index 76a69af..b5232ff 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,6 +1,5 @@
 mod config;
 mod system;
-mod listener;
 
 use std::{fs, panic};
 use tokio::{runtime, task::JoinSet};
@@ -51,7 +50,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::System::new(name.clone(), config);
+                let mut system = system::Manager::new(name.clone(), config);
                 system.start_clients().await;
             });
         });