stint-core 0.3.0

Core domain logic, data models, and storage traits for Stint
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Domain models for Stint.

pub mod entry;
pub mod project;
pub mod session;
pub mod tag;
pub mod types;

pub use entry::{EntryFilter, EntrySource, TimeEntry};
pub use project::{Project, ProjectSource, ProjectStatus};
pub use session::ShellSession;
pub use types::{EntryId, ProjectId, SessionId};