refactord network manager module name
This commit is contained in:
parent
5e087604e5
commit
d9a6719162
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue