libdeadmock 0.1.6

API Mocking and Virtualization
// Copyright (c) 2018 libdeadmock developers
//
// Licensed under the Apache License, Version 2.0
// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. All files in the project carrying such notice may not be copied,
// modified, or distributed except according to those terms.

//! Configuration for the server.
crate mod files;
crate mod header;
crate mod mapping;
crate mod mappings;
crate mod proxy;
crate mod request;
crate mod response;
crate mod runtime;

pub use self::files::Files;
pub use self::header::{Header, HeaderPattern};
pub use self::mapping::Mapping;
pub use self::mappings::Mappings;
pub use self::proxy::Proxy;
pub use self::request::Request;
pub use self::response::Response;
pub use self::runtime::Runtime;