holochain_scaffolding_cli 0.4000.4

CLI to easily generate and modify holochain apps
Documentation
1
2
3
4
5
6
7
8
9
10
11
use colored::Colorize;
use holochain_scaffolding_cli::cli::HcScaffold;
use structopt::StructOpt;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    if let Err(e) = HcScaffold::from_args().run().await {
        eprintln!("{}", e.to_string().red());
    }
    Ok(())
}