fnox 1.23.1

A flexible secret management tool supporting multiple providers and encryption methods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::commands::Cli;
use crate::error::Result;
use clap::Parser;

#[derive(Parser)]
#[command(visible_aliases = ["v"])]
pub struct VersionCommand;

impl VersionCommand {
    pub async fn run(&self, _cli: &Cli) -> Result<()> {
        println!("{} {}", env!("CARGO_PKG_NAME"), env!("CARGO_PKG_VERSION"));
        Ok(())
    }
}