1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 19:47:43 +02:00

Fix for non Unix OS (#69)

This commit is contained in:
Aaron Housh
2019-12-02 21:07:54 -07:00
committed by Nikolay Kim
parent bd4c4cda8b
commit 2756bedc3d
2 changed files with 5 additions and 1 deletions

View File

@ -53,6 +53,7 @@ pub mod net {
pub use tokio::net::{UnixDatagram, UnixListener, UnixStream};
}
#[cfg(unix)]
pub use self::unix::*;
}