pinto-cli 0.1.0

A lightweight, local-first, Git-friendly Scrum backlog and Kanban board for the CLI and TUI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Domain model.
//!
//! Pure logic representing Product Backlog Items (PBIs) and Kanban workflows.
//! It has no I/O dependency: persistence belongs to `storage` and time is injected.

mod graph;
mod item;
mod item_id;
mod status;
mod workflow;

pub use graph::{dependency_creates_cycle, parent_creates_cycle};
pub use item::BacklogItem;
pub use item_id::ItemId;
pub use status::Status;
pub use workflow::Workflow;