satisfied cargo clippy

This commit is contained in:
2025-08-09 22:12:49 +02:00
parent cab92df37e
commit 72a260c65f
5 changed files with 15 additions and 10 deletions

View File

@@ -16,6 +16,12 @@ pub struct NetworkMonitor {
last_update: Instant,
}
impl Default for NetworkMonitor {
fn default() -> Self {
Self::new()
}
}
impl NetworkMonitor {
pub fn new() -> Self {
Self {