Skip to main content

holochain_cli_bundle/
lib.rs

1#![deny(missing_docs)]
2
3//! This crate provides a set of utilities for working with Holochain bundles.
4
5mod cli;
6mod error;
7mod init;
8mod packing;
9
10pub use cli::{
11    app_pack_recursive, bundled_dnas_workdir_locations, get_app_name, get_dna_name,
12    get_web_app_name, web_app_pack_recursive, HcAppBundle, HcDnaBundle, HcWebAppBundle,
13};
14pub use packing::{expand_bundle, expand_unknown_bundle, pack};