rtw 2.0.0-alpha

time tracker command line tool
Documentation
//! Core traits and data structures.
pub mod activity;
pub mod clock;
pub mod datetimew;
pub mod durationw;
pub mod service;
pub mod storage;

/// Absolute dates are parsed and displayed using this format
///
/// e.g. 2019-12-25T18:43:00
pub const DATETIME_FMT: &str = "%Y-%m-%dT%H:%M:%S";

/// `Tag` = `String`
pub type Tag = String;
/// `Tags` = `Vec<Tag>`
pub type Tags = Vec<Tag>;
/// `ActivityId` = `usize`
pub type ActivityId = usize;