halp 0.2.0

A CLI tool to get help with CLI tools 🐙
Documentation
1
2
3
4
5
6
7
8
9
use clap::{ColorChoice, Parser};

#[derive(Parser, Debug)]
#[command(bin_name = "test", version, disable_colored_help = true, color = ColorChoice::Never)]
struct Args {}

fn main() {
    Args::parse();
}