saga-time 0.1.0

A local-first time tracking application with CLI and TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod client;
pub mod entry;
pub mod project;
pub mod rate;
pub mod report;
pub mod tag;

pub use client::Client;
pub use entry::{NewTimeEntry, TimeEntry};
pub use project::{Project, ProjectStatus};
pub use rate::{Rate, RateType};
pub use report::{DailySummary, ProjectBreakdown, WeeklyRetrospective};
pub use tag::Tag;