runtimo-cli 0.7.0

CLI for the Runtimo capability runtime — run, list, status, logs, undo, telemetry, processes
1
2
3
4
5
6
7
8
//! Runtimo daemon binary — bundled with the CLI crate.
//!
//! `cargo install runtimo-cli` installs both `runtimo` and `runtimo-daemon`.
//! The daemon binary delegates to [`runtimo_daemon::run`].

fn main() -> Result<(), Box<dyn std::error::Error>> {
    runtimo_daemon::run()
}