//! Parse a docker-compose.yml file and print it to standard output in
//! normalized format.
extern crate docker_compose;
use v2 as dc;
use error;
use ;
/// A catch-all error type to which any other error may be coerced by
/// `try!` (provided it implements `Send` and `Sync`, which most types
/// do).
pub type Error = ;