nerve_cli/
main.rs

1//! Nerve Framework CLI
2//!
3//! Command-line interface for system debugging and monitoring.
4
5use nerve::cli::CliApp;
6
7fn main() {
8    // Initialize the CLI application
9    let app = CliApp::new();
10
11    // Run the CLI application
12    if let Err(e) = app.run() {
13        eprintln!("❌ Error: {}", e);
14        std::process::exit(1);
15    }
16}