aven 0.1.3

Local-first task manager CLI and sync server
Documentation
use anyhow::Result;

use crate::cli::{ConfigCommand, ConfigSubcommand};
use crate::operations::{init_config, show_config};
use crate::render::quote;

pub(crate) async fn cmd_config(args: ConfigCommand) -> Result<()> {
    match args.command {
        ConfigSubcommand::Init => {
            let outcome = init_config()?;
            println!(
                "created-config path={}",
                quote(&outcome.path.display().to_string())
            );
        }
        ConfigSubcommand::Show => {
            let outcome = show_config()?;
            println!("config path={}", quote(&outcome.path.display().to_string()));
            println!("{}", outcome.text);
        }
    }
    Ok(())
}