1// Copyright 2020-2022 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 self::{node::NodeMetrics, peer::PeerMetrics};