Remove unused imports

This commit is contained in:
Fabian Stamm 2023-02-05 11:37:18 +01:00
parent bcc332bd7b
commit f74409c9eb
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
use std::collections::HashMap;
use std::sync::atomic::{AtomicI32, AtomicU64};
use std::sync::atomic::AtomicI32;
use std::sync::Arc;
use log::{debug, error, info, trace};
@ -7,7 +7,6 @@ use rand::seq::SliceRandom;
use tokio::net::UdpSocket;
use tokio::sync::Mutex;
use tokio::time::Instant;
use crate::listener::Listener;
use crate::shutdown::{Shutdown, ShutdownReceiver};