refactord network manager module name

This commit is contained in:
michael-bailey 2022-09-25 12:26:36 +01:00
parent 5e087604e5
commit d9a6719162
2 changed files with 6 additions and 3 deletions

View File

@ -2,12 +2,15 @@
//! This module contains the network manager actor
//! it's role involves handling new oncomming network connections
mod actor;
mod builder;
mod messages;
mod network_manager;
pub(crate) use actor::NetworkManager;
pub(crate) use builder::*;
pub(crate) use messages::{
NetworkDataMessage, NetworkDataOutput, NetworkMessage, NetworkOutput,
NetworkDataMessage,
NetworkDataOutput,
NetworkMessage,
NetworkOutput,
};
pub(crate) use network_manager::NetworkManager;