pinto/backlog.rs
1//! Domain model.
2//!
3//! Pure logic representing Product Backlog Items (PBIs) and Kanban workflows.
4//! It has no I/O dependency: persistence belongs to `storage` and time is injected.
5
6mod acceptance;
7mod graph;
8mod item;
9mod item_id;
10mod status;
11mod workflow;
12
13pub use acceptance::AcceptanceCriteriaProgress;
14pub use graph::{dependency_creates_cycle, parent_creates_cycle};
15pub use item::BacklogItem;
16pub use item_id::ItemId;
17pub use status::Status;
18pub use workflow::Workflow;