holochain_cli_bundle 0.7.0-dev.20

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::HcWebAppBundle;

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