1 // Copyright 2022 The ChromiumOS Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 //! Provides noop implementations of metrics interfaces, to be used by builds which don't wish 6 //! to log metrics. 7 8 mod client; 9 mod periodic_logger; 10 mod request_handler; 11 12 pub use client::*; 13 pub use periodic_logger::PeriodicLogger; 14 pub use request_handler::NoopMetricsRequestHandler; 15