jump-start 0.2.3

The CLI for jump-start: A shortcut to your favorite code
Documentation
use crate::config::get_config_path;
use anyhow::Result;
use log::{debug, info};

pub fn config() -> Result<()> {
    let config_path = get_config_path();

    // Add some debug messages that will only show with --verbose
    debug!("Config file format: JSON");
    debug!(
        "Config directory created: {}",
        config_path.parent().unwrap().exists()
    );

    // This is the standard output that always shows
    info!("{}", config_path.display());

    Ok(())
}