jarvy 0.0.5

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
1
2
3
4
5
6
7
8
//! Configure command handler - generate default jarvy.toml

use crate::config::create_default_config;

/// Run the configure command
pub fn run_configure() {
    create_default_config();
}