mirror of
https://github.com/YGGverse/agate.git
synced 2026-04-08 20:45:29 +00:00
collapse use statements
This commit is contained in:
parent
3765f8a515
commit
f266de8a16
1 changed files with 4 additions and 3 deletions
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue