summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorAshelyn Dawn <ashe@ashen.earth>2024-10-01 15:37:09 -0600
committerAshelyn Dawn <ashe@ashen.earth>2024-10-01 15:37:09 -0600
commita6a120ae8b8ed08b0801d76e80a5f7a0b8cde44b (patch)
tree37242703c61137d1198bc373558828b9faa0732b /src/main.rs
parentf87e9727e69e981e4acff31a779e29a35637b964 (diff)
Refactor gateway and message aggregation
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;
             });
         });