use pinto::service::{Burndown, CycleTimeReport};
pub(crate) fn format_burndown(chart: &Burndown, max_width: usize) -> String {
super::format_burndown(chart, max_width)
}
pub(crate) fn format_cycletime(report: &CycleTimeReport) -> String {
super::format_cycletime(report)
}