From abbb54d591eb2a26b595102a5b8de2ac23fe8d8e Mon Sep 17 00:00:00 2001 From: ParrotXray Date: Sat, 23 May 2026 11:47:08 +0000 Subject: [PATCH] wip --- mantis/src/core/system.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mantis/src/core/system.rs b/mantis/src/core/system.rs index 69d0798..5c9ee9d 100644 --- a/mantis/src/core/system.rs +++ b/mantis/src/core/system.rs @@ -93,9 +93,10 @@ impl System { .run(app_services.ml_engine.clone(), app_services.suricata_engine.clone()) .await?; app_services.run().await?; - self.run_http_server().await?; log!(SystemLog::InitializeComplete); + + self.run_http_server().await?; Ok(()) }