Add basic metrics to libp2p

This commit is contained in:
Paul Hauner
2019-08-12 14:16:20 +10:00
parent 0b4a8893a4
commit cac0e5c832
4 changed files with 26 additions and 0 deletions

View File

@@ -2,10 +2,14 @@
/// all required libp2p functionality.
///
/// This crate builds and manages the libp2p services required by the beacon node.
#[macro_use]
extern crate lazy_static;
pub mod behaviour;
mod config;
mod discovery;
pub mod error;
mod metrics;
pub mod rpc;
mod service;