chest-rs 0.2.0

A multiplatform CLI command organizer
Documentation
1
2
3
4
5
6
use chest_rs::{AppResult, Chest};
use clap::Parser;

fn main() -> AppResult<()> {
    Chest::parse().run()
}