agent-vault 0.1.0

Zero-trust credential manager for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
mod cli;
mod core;
mod error;

use clap::Parser;

fn main() -> anyhow::Result<()> {
    let cli = cli::Cli::parse();
    cli::dispatch(cli)
}