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; }