execgo-runtime 1.0.0-b1

Adaptive data-plane runtime for ExecGo with HTTP API, CLI, capability negotiation, and local resource ledger
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Parser;
use execgo_runtime::{cli::Cli, runtime};

#[tokio::main]
async fn main() {
    if let Err(err) = runtime::run(Cli::parse()).await {
        eprintln!("{err}");
        std::process::exit(1);
    }
}