camber-cli 0.2.0

CLI, project scaffolding, and config-driven proxy for Camber
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[path = "../support/error.rs"]
mod error;
#[path = "../support/http.rs"]
pub mod http;
#[path = "../support/process.rs"]
pub mod process;

pub use error::FixtureError;

impl From<http::BackendError> for FixtureError {
    fn from(error: http::BackendError) -> Self {
        Self::new(error.to_string())
    }
}