collapse use statements

This commit is contained in:
Johann150 2023-03-17 19:04:31 +01:00
parent 3765f8a515
commit f266de8a16
No known key found for this signature in database
GPG key ID: 9EE6577A2A06F8F1

View file

@ -33,9 +33,10 @@ use {
}; };
#[cfg(unix)] #[cfg(unix)]
use std::os::unix::fs::FileTypeExt; use {
#[cfg(unix)] std::os::unix::fs::FileTypeExt,
use tokio::net::{UnixListener, UnixStream}; tokio::net::{UnixListener, UnixStream},
};
static DEFAULT_PORT: u16 = 1965; static DEFAULT_PORT: u16 = 1965;