switchboard_container_utils/lib.rs
1// note the use of kv_log_macro. structured fields are not quite
2// backed in the log crate yet. until then kv_log_macro exposes them
3// in log-compatible macros
4pub use json_env_logger;
5pub use kv_log_macro::{debug, error, info, trace, warn};
6
7mod error;
8pub use error::*;
9
10pub mod config;
11pub use config::*;
12
13pub mod utils;
14pub use utils::*;
15
16pub mod manager;
17pub use manager::*;
18
19pub mod container;
20pub use container::*;
21
22pub mod env;
23pub use env::*;
24
25pub use bollard;
26
27pub use switchboard_common::SbError;