This project is trying to simplify the process of making CLI program. it will detect flag for your program and give you ways to have access to list of Flag the program is receiving.
imports:
use args_flags_1::{FlagDetect, Flag};
use (one prefix):
let flags: Vec<Flag> = FlagDetect::get("-", std::env::args());
use of more than one prefix (Beta):
let flags: Vec<Flag> = FlagDetect::getn(vec!["--", "-"], std::env::args());
use with struct:
```
let prefix: &str = "-";
let args: std::env::Args = std::env::args();
let detect: FlagDetect = FlagDetect::new(prefix).from_args(args);
// gives back value of the flag
let sflag: Option