From a38e3e469982cfcd35d5734ef4b4390b19a9894c Mon Sep 17 00:00:00 2001 From: HimbeerserverDE Date: Mon, 29 Jan 2024 17:52:42 +0100 Subject: combine std top-level mod imports --- src/main.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 9c2490b..5c3e842 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,8 @@ -use std::array; use std::collections::HashMap; -use std::fs; -use std::io; use std::net::SocketAddr; use std::num::Wrapping; use std::sync::Arc; +use std::{array, fs, io}; use tokio::sync::{mpsc, Mutex}; use tokio::time::Duration; -- cgit v1.2.3