use crate::config::get_config_path;
use anyhow::Result;
use log::{debug, info};
pub fn config() -> Result<()> {
let config_path = get_config_path();
debug!("Config file format: JSON");
debug!(
"Config directory created: {}",
config_path.parent().unwrap().exists()
);
info!("{}", config_path.display());
Ok(())
}