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
//! CLI layer.
//!
//! Keep argument definitions, command execution, and output formatting separate; `main.rs` only
//! starts the application.

mod args;
mod commands;
mod dependency_display;
mod editor;
mod format;
mod json;
mod kanban;
mod markdown;
mod shell;

pub(crate) use commands::entrypoint;