Use mod files

To have things more self contained.
This commit is contained in:
finga 2021-10-10 01:17:48 +02:00
parent ecd5ee5a36
commit 90a3a5eb52
2 changed files with 0 additions and 0 deletions

13
src/posix/mod.rs Normal file
View file

@ -0,0 +1,13 @@
mod create;
mod info;
mod list;
mod recv;
mod send;
mod unlink;
pub use create::Create;
pub use info::Info;
pub use list::List;
pub use recv::Recv;
pub use send::Send;
pub use unlink::Unlink;