1 2 3 4 5 6 7 8 9 10 11 12 13 14
pub mod commands; use clap::Parser; use color_eyre::eyre::Result; use commands::CLI; mod client; mod server; mod vault; #[tokio::main] async fn main() -> Result<()> { color_eyre::install()?; let cli = CLI::parse(); cli.exec().await }