An open API service indexing awesome lists of open source software.

https://github.com/murphsicles/clap

Command line argument parser
https://github.com/murphsicles/clap

Last synced: 22 days ago
JSON representation

Command line argument parser

Awesome Lists containing this project

README

          

# @cli/clap

Full command-line argument parser for Zeta, ported from Rust's `clap` v4.6.1.

## Usage

```zeta
use clap::Command;

let matches = Command::new("myapp")
.about("Does awesome things")
.arg(clap::arg!(--output ).help("Output file"))
.get_matches();
```

## License

MIT © Zeta Foundation