lighthouse/beacon_node/network/src/lib.rs
2019-06-25 18:02:50 +10:00

10 lines
226 B
Rust

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