clier 0.7.4

A cli parser and framework for rust
Documentation
1
2
3
4
5
6
7
8
9
10
use clier_parser::Argv;

fn main() {
  let args: Argv = Argv::parse();
  println!("{:#?}", args.commands);

  if args.commands.first().unwrap() == "hello" {
    println!("hello this is a command")
  }
}