Files
lighthouse/beacon_node/network/src/lib.rs
2019-03-19 22:53:51 +11:00

10 lines
202 B
Rust

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