1
2
3
4
5
6
//! Functions for parsing time in different formats.
pub use relative::parse_relative;
pub use unix::parse_unix;

mod relative;
mod unix;