time-tracker-cli 0.1.0

Simple Time Tracking TUI and CLI
1
2
3
4
5
6
7
8
9
10
11
12
mod actions;
mod date_resolver;
mod storage;
mod timer;

pub(crate) use actions::execute_action;
pub(crate) use actions::format_duration;
pub(crate) use actions::last_event_kind;
pub(crate) use actions::today_record;
pub(crate) use date_resolver::resolve_date;
pub(crate) use storage::load_record;
pub(crate) use timer::calculate_worked;