apimock 4.6.7

HTTP(S) mock server. Drop JSON files into a folder and your API immediately exists.
Documentation
1
2
3
4
5
6
7
8
9
10
/// app entry point on executable
#[tokio::main]
async fn main() {
    let env_args = match apimock::core::args::EnvArgs::default() {
        Some(x) => x,
        None => return (),
    };
    let app = apimock::new(&env_args).await;
    app.server.start().await
}