passafe 1.0.4

A password manager for *nix operating systems
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod dashboard_options {
    use std::io;
    pub fn list_option() -> String {
        let mut selected_option = String::new();
        println!("1) Create Password \n2) View Password \n3) Exit");
        println!("\nSelect an option");
        io::stdin()
            .read_line(&mut selected_option)
            .expect("An error occured ");
        selected_option
    }
}