1 2 3 4 5 6 7 8 9 10 11 12
// SPDX-License-Identifier: AGPL-3.0-only // Copyright (C) 2026 Vallés Puig, Ramon //! Shared crate foundations used by every domain layer. pub mod constats; pub mod duration; pub mod error; pub(crate) mod sealed; pub use duration::{DurationError, ExactDuration, NANOS_PER_SECOND}; pub use error::{ConversionError, TimeDataError};