lighthouse/beacon_node/network/src/lib.rs

10 lines
211 B
Rust
Raw Normal View History

/// This crate provides the network server for Lighthouse.
pub mod error;
mod message_handler;
mod messages;
mod service;
pub use libp2p::NetworkConfig;
2019-03-12 06:28:11 +00:00
pub use messages::NodeMessage;
pub use service::Service;