clawless 0.5.0

An opinionated framework for building command-line applications
Documentation
1
2
3
4
5
6
7
8
9
use clawless::prelude::*;

#[command]
pub async fn greet() -> CommandResult {
    println!("Hello!");
    Ok(())
}

fn main() {}