cellos-ctl 0.5.2

cellctl — kubectl-style CLI for CellOS execution cells and formations. Thin HTTP client over cellos-server with apply/get/describe/logs/events/webui.
Documentation
1
2
3
4
5
6
7
8
9
//! `cellctl` binary entrypoint — thin shim over [`cellos_ctl::run`].
//!
//! All CLI logic lives in `lib.rs` so the `cellos` meta-crate
//! (`crates/cellos-meta/`) can install the same binary via
//! `cargo install cellos`.

fn main() {
    cellos_ctl::run();
}