mirror of
https://github.com/samsonjs/agate.git
synced 2026-03-25 09:05:50 +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)]
|
||||
use std::os::unix::fs::FileTypeExt;
|
||||
#[cfg(unix)]
|
||||
use tokio::net::{UnixListener, UnixStream};
|
||||
use {
|
||||
std::os::unix::fs::FileTypeExt,
|
||||
tokio::net::{UnixListener, UnixStream},
|
||||
};
|
||||
|
||||
static DEFAULT_PORT: u16 = 1965;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue