keynest 0.4.3

Simple, offline, cross-platform secrets manager written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use clap::Parser;

mod auth;
mod cli;
mod commands;

use cli::Cli;
use commands::Command;

fn main() -> Result<()> {
    let cli = Cli::parse();
    cli.command.run(cli.store)
}