nebu-ctx 0.2.7

Thin Rust client for the .NET nebu-ctx MCP and dashboard server.
Documentation
1
2
3
4
5
6
7
8
use nebu_ctx_client::cli;

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