rust_docker/lib.rs
1//! docker-rs is a rust library to interact with Docker API
2//!
3//! * Currently the only method to connect to docker is through unix
4//! socket.
5#[macro_use]
6extern crate quick_error;
7
8#[macro_use]
9extern crate serde_derive;
10
11extern crate serde;
12extern crate serde_json;
13
14pub mod api;
15pub mod client;
16mod errors;
17mod utils;
18
19pub use client::DockerClient;