1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! # holochain_cli_sandbox
//!
//! A library and CLI to help create, run, and interact with sandboxed Holochain conductor environments,
//! for testing and development purposes.
//! **Warning: this is still WIP and subject to change**
//! There's probably a few bugs. If you find one please open an [issue](https://github.com/holochain/holochain/issues)
//! or make a PR.
//!
//! While this crate can be compiled into an executable, it can also be used as a library so you can create more
//! complex sandboxes / admin calls.
//! See the docs:
//!
//! ```shell
//! cargo doc --open
//! ```
//!
//! and the examples.
pub use force_admin_port;
/// Print a message with `hc-sandbox: ` prepended
/// and ANSI colors.
pub use HcSandbox;