1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
//! Temporal quantification for the R3 kernel.
//!
//! > Duck Guy: “Maybe time's just a construct of human perception, an illusion created by—”
//! >
//! > Tony the Clock: “(alarm sounds) Eh! Eh! Eh! Eh! EH! EH! EH! EH! **EH! EH! EH! EH!**”
//! >
//! > — [*Don't Hug Me I'm Scared 2 - TIME*](https://www.youtube.com/watch?v=vtkGtXtDlQA)
mod duration;
#[allow(clippy::module_inception)]
mod time;
pub use self::{duration::*, time::*};