klask 1.0.0

Automatically create GUI for clap apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Parser;
use klask::Settings;

#[derive(Debug, Parser)]
struct Opts {
    #[clap(long)]
    opt1: Option<String>,
    #[clap(long)]
    opt2: Option<String>,
}

fn main() {
    klask::run_derived::<Opts, _>(Settings::default(), |opt| println!("{:?}", opt));
}