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
//! pinto CLI entry point.
//!
//! Argument parsing and command execution are delegated to the `cli` module; `main` only starts
//! the Tokio runtime.

mod cli;

use std::process::ExitCode;

#[tokio::main]
async fn main() -> ExitCode {
    cli::entrypoint().await
}