jarvy 0.0.3

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
9
10
11
12
13
14
//! CLI argument parsing and command definitions for Jarvy
//!
//! This module contains all CLI-related types extracted from main.rs:
//! - `Cli` struct with clap derive macros
//! - `Commands` enum with all subcommands
//! - `OutputFormat` enum for output formatting
//! - Subcommand enums for nested commands
//! - Helper functions for argument parsing

mod args;
mod subcommands;

pub use args::*;
pub use subcommands::*;