ironic 0.2.0

A batteries-included, type-safe application framework for Rust
Documentation
1
2
3
4
5
6
7
8
//! Binary entry point for the Ironic CLI.

fn main() {
    if let Err(error) = ironic::run() {
        eprintln!("error: {error}");
        std::process::exit(1);
    }
}