pash 0.3.0

Simple and easy app for generating and storing passwords
Documentation
1
2
3
4
5
6
7
use anyhow::{Context, Result};

fn main() -> Result<()> {
    pash::cli::matches_interaction().context("Failed to use CLI matches")?;

    Ok(())
}