iskra 0.2.1

A safe, modern, Rust-native data transfer tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use iskra::cli::run_cli;

/// Entry point for the Iskra application.
// This function initialises the asynchronous runtime and executes the CLI.
#[tokio::main]
async fn main() {
    // Run the CLI and handle any errors gracefully.
    if let Err(e) = run_cli().await {
        eprintln!("Error: {e}");
        std::process::exit(1);
    }
}