1
2
3
4
5
6
7
8
9
/*!
This crate proposes a reimplementation of [Wiremock](http://wiremock.org/).
Its aims at converting [Wiremock stubs](http://wiremock.org/docs/stubbing/) into
[wiremock-rs](https://github.com/LukeMathWalker/wiremock-rs) mocks.
*/
pub use server::{config::Config, Stubr, traits::AnyStubServer};

mod model;
mod server;