1// Copyright 2020-2021 IOTA Stiftung 2// SPDX-License-Identifier: Apache-2.0 3 4//! A module that provides types to hold metrics related to other components. 5 6pub mod node; 7pub mod peer; 8 9pub use node::NodeMetrics; 10pub use peer::PeerMetrics;