1 2 3 4 5 6 7 8 9 10
pub mod client; pub mod manager; pub mod message; pub mod server; pub mod alias; type NodeAlias = String; type NodeIP = String; type NodePort = String; type NodeInfo = (NodeAlias, NodeIP, NodePort);