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
//! Scrum report text formatting.

use pinto::service::{Burndown, CycleTimeReport};

/// Format the Sprint burndown report.
pub(crate) fn format_burndown(chart: &Burndown, max_width: usize) -> String {
    super::format_burndown(chart, max_width)
}

/// Format the cycle and lead-time report.
pub(crate) fn format_cycletime(report: &CycleTimeReport) -> String {
    super::format_cycletime(report)
}