Skip to main content

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 graph;
7mod item;
8mod item_id;
9mod status;
10mod workflow;
11
12pub use graph::{dependency_creates_cycle, parent_creates_cycle};
13pub use item::BacklogItem;
14pub use item_id::ItemId;
15pub use status::Status;
16pub use workflow::Workflow;