Skip to main content

tempoch_core/data/
mod.rs

1// SPDX-License-Identifier: AGPL-3.0-only
2// Copyright (C) 2026 Vallés Puig, Ramon
3
4//! Runtime access to bundled and optionally refreshed time-data tables.
5
6pub mod runtime_data;
7pub mod status;
8
9pub use status::{
10    assert_fresh, time_data_status, ActiveTimeDataSource, DataHorizons, FreshnessError,
11    TimeDataStatus,
12};