Files
lighthouse/beacon_node/network/src/lib.rs
2019-03-12 17:28:11 +11:00

10 lines
211 B
Rust

/// This crate provides the network server for Lighthouse.
pub mod error;
mod message_handler;
mod messages;
mod service;
pub use libp2p::NetworkConfig;
pub use messages::NodeMessage;
pub use service::Service;