This commit is contained in:
Mikaël Cluseau
2026-06-11 12:08:42 +02:00
parent ee0ff1373f
commit 19193a9560
14 changed files with 95 additions and 94 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ use crate::input;
pub async fn run() {
tokio::spawn(async {
// give a bit of time for stdout
use tokio::time::{sleep, Duration};
use tokio::time::{Duration, sleep};
sleep(Duration::from_millis(200)).await;
if let Err(e) = input::forward_requests_from_socket().await {