switchboard-container-utils 0.1.9

Rust library to interact and manage containers.
Documentation
// note the use of kv_log_macro. structured fields are not quite
// backed in the log crate yet. until then kv_log_macro exposes them
// in log-compatible macros
pub use json_env_logger;
pub use kv_log_macro::{debug, error, info, trace, warn};

mod error;
pub use error::*;

pub mod config;
pub use config::*;

pub mod utils;
pub use utils::*;

pub mod manager;
pub use manager::*;

pub mod container;
pub use container::*;

pub mod env;
pub use env::*;

pub use bollard;

pub use switchboard_common::SbError;