processcube_engine_client 0.3.0

5Minds ProcessCube® Engine client written in Rust
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use processcube_engine_client::cli::client::{register_commands, Cli};

#[tokio::main]
async fn main() -> () {
    let cli = Cli::parse();
    register_commands(cli).await;
}