atomr_core/io/mod.rs
1//! Network IO — small TCP/UDP helpers mirroring / `IO.Udp`
2//! but exposed as simple functions returning `tokio::net` primitives wrapped
3//! in channel-driven actors.
4
5pub mod manager;
6pub mod tcp;
7pub mod udp;
8
9pub use manager::{ConnId, IoEvent, TcpCommand, TcpManager, UdpCommand, UdpManager};