lighthouse-pulse/beacon_node/network/src/lib.rs

9 lines
180 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 service::Service;