keynest 0.4.4

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

mod auth;
mod cli;
mod commands;

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

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