aprender-simulate 0.64.0

Unified Simulation Engine for the Sovereign AI Stack
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! simular CLI - Unified Simulation Engine
//!
//! Minimal entry point. All logic is in the `cli` module.

use clap::Parser;
use simular::cli::{run_cli, Cli};
use std::process::ExitCode;

fn main() -> ExitCode {
    run_cli(Cli::parse())
}