tempoch_core/model/mod.rs
1// SPDX-License-Identifier: AGPL-3.0-only
2// Copyright (C) 2026 Vallés Puig, Ramon
3
4//! Core time model: instants, scales, and conversion targets.
5
6pub(crate) mod civil;
7pub mod scale;
8pub mod target;
9pub mod time;
10
11pub use scale::{ContinuousScale, CoordinateScale, Scale, TAI, TCB, TCG, TDB, TT, UT1, UTC};
12pub use target::{ContextConversionTarget, ConversionTarget, InfallibleConversionTarget};
13pub use time::Time;