claui 0.4.0

A GUI generator for clap using egui.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![windows_subsystem = "windows"]

use clap::Command;

fn main() {
    let app = Command::new("Basic");

    claui::run(app, |_| {
        println!("Hello, World!");
    })
    .unwrap();
}