mini_functions/date.rs
1// Copyright © 2023 Mini Functions library. All rights reserved.
2// SPDX-License-Identifier: Apache-2.0 OR MIT
3
4//! Application date/time functionality
5//!
6//! Provides access to date/time functions and types.
7
8/// Re-exported main [`DateTime`] type from dtt for date/time handling.
9pub use dtt::DateTime;
10
11/// Re-exported [`run()`] function from dtt.
12pub use dtt::run;
13
14/// Re-exported [`dtt_macros`] module from dtt.
15pub use dtt::macros as dtt_macros;