holochain_cli_bundle 0.7.0-dev.21

DNA and hApp bundling functionality for the `hc` Holochain CLI utility
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use holochain_cli_bundle::HcAppBundle;

/// Main `hc-app` executable entrypoint.
#[tokio::main]
pub async fn main() -> anyhow::Result<()> {
    HcAppBundle::parse().subcommand.run().await
}