use clap::{Args, Subcommand};
#[derive(Debug, Args)]
pub struct ConfigArgs {
#[command(subcommand)]
pub command: ConfigCmd,
}
#[derive(Debug, Subcommand)]
pub enum ConfigCmd {
Show,
Set { key: String, value: String },
Path,
}
pub async fn execute(args: ConfigArgs) -> anyhow::Result<u8> {
tracing::info!(?args.command, "config subcommand");
anyhow::bail!("config: not yet implemented")
}