diff --git a/proxmox-async/src/io/mod.rs b/proxmox-async/src/io/mod.rs index 32081cf5..9a6d8a62 100644 --- a/proxmox-async/src/io/mod.rs +++ b/proxmox-async/src/io/mod.rs @@ -2,5 +2,3 @@ mod async_channel_writer; pub use async_channel_writer::AsyncChannelWriter; - -pub mod udp; diff --git a/proxmox-async/src/lib.rs b/proxmox-async/src/lib.rs index aee388c0..ad540d39 100644 --- a/proxmox-async/src/lib.rs +++ b/proxmox-async/src/lib.rs @@ -2,6 +2,7 @@ pub mod blocking; pub mod broadcast_future; pub mod compression; pub mod io; +pub mod net; pub mod runtime; pub mod stream; pub mod zip; diff --git a/proxmox-async/src/net/mod.rs b/proxmox-async/src/net/mod.rs new file mode 100644 index 00000000..7e5aaa13 --- /dev/null +++ b/proxmox-async/src/net/mod.rs @@ -0,0 +1 @@ +pub mod udp; diff --git a/proxmox-async/src/io/udp.rs b/proxmox-async/src/net/udp.rs similarity index 100% rename from proxmox-async/src/io/udp.rs rename to proxmox-async/src/net/udp.rs