punch_clock/lib.rs
1//! The `punch-clock` crate is a lightweight tool for tracking time.
2//!
3//! This library exposes an API for performing all the same tasks as through the command-line
4//! interface (e.g. punching in or out, checking time tracking status, counting totals).
5
6mod event;
7mod period;
8pub mod sheet;
9
10pub use event::Event;
11pub use period::Period;
12pub use sheet::Sheet;