kudune 0.1.0

Utility to setup Antelope nodes in Docker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//!
//! This crate provides a `kudune` executable that replicates the functionality of the
//! original [DUNES](https://github.com/AntelopeIO/DUNES) which has been deprecated.
//!

#![doc = include_str!("../README.md")]

pub mod command;
pub mod docker;
pub mod dune;
pub mod nodeconfig;
pub mod util;

pub use command::{DockerCommand, DockerCommandJson};
pub use docker::Docker;
pub use dune::Dune;
pub use nodeconfig::NodeConfig;