settings/
clock.rs

1// Copyright 2020 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#[cfg(not(test))]
6pub use settings_common::clock::{inspect_format_now, now};
7
8#[cfg(test)]
9pub(crate) use settings_common::clock::mock::{self, inspect_format_now, now};