//! Config command implementation
use anyhow::Result;
use clap::Parser;
#[derive(Parser, Debug)]
pub struct ConfigCommand {
/// Show current configuration
#[clap(long)]
pub show: bool,
}
impl ConfigCommand {
pub async fn run(&self) -> Result<()> {
if self.show {
println!("Current configuration...");
}
Ok(())
}
}