pwgen2 0.8.2

password generator
Documentation
1
2
3
4
5
6
7
8
use crate::cli::{actions::Action, commands, dispatch::handler};

/// Start the CLI
#[must_use]
pub fn start() -> Action {
    let matches = commands::new().get_matches();
    handler(&matches)
}