holochain_cli_client 0.7.0-dev.25

CLI utilities for interacting with Holochain conductors
Documentation
1
2
3
4
5
6
7
8
9
use clap::Parser;
use holochain_cli_client::HcClient;

/// Entry point for the `hc-client` binary.
#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let cli = HcClient::parse();
    cli.run().await
}