repove unuused

This commit is contained in:
2026-04-11 23:01:58 +02:00
parent d1f9238b2a
commit a0c13ff4f7
4 changed files with 1 additions and 6 deletions

View File

@@ -1,6 +1,4 @@
//extern crate termios;
use ssh_status::config;
use ssh_status::docker;
use ssh_status::runner::{Action, Runner};
use std::io::{self, Write};

View File

@@ -1,8 +1,6 @@
use std::path::Path;
use std::{fs, io};
use std::collections::HashMap;
use serde::Deserialize;
use toml;

View File

@@ -1,4 +1,3 @@
use bollard::models::ContainerSummary;
use bollard::{Docker, errors::Error};
use crate::config::Service;

View File

@@ -30,7 +30,7 @@ impl AppServer {
tokio::time::sleep(tokio::time::Duration::from_millis(1000)).await;
for (_, app) in clients.lock().await.iter_mut() {
app.update();
app.update().await;
}
}
});