1/*
2This internal module contains the timestamp implementation.
3
4Its public API is available when the `humantime` crate is available.
5*/
6
7#[cfg_attr(feature = "humantime", path = "extern_impl.rs")]
8#[cfg_attr(not(feature = "humantime"), path = "shim_impl.rs")]
9mod imp;
10
11pub(in crate::fmt) use self::imp::*;
12