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
//! Bootstrap command handler - minimal machine bootstrap

use crate::bootstrap;

/// Run the bootstrap command
pub fn run_bootstrap() {
    bootstrap::bootstrap();
}