MCPcopy Create free account
hub / github.com/EnsoBuild/temper / simulate_bundle

Function simulate_bundle

src/lib.rs:43–51  ·  view source on GitHub ↗

POST /simulate-bundle

(
    config: Config,
)

Source from the content-addressed store, hash-verified

41
42/// POST /simulate-bundle
43pub fn simulate_bundle(
44 config: Config,
45) -> impl Filter<Extract = (impl Reply,), Error = Rejection> + Clone {
46 warp::path!("simulate-bundle")
47 .and(warp::post())
48 .and(json_body(&config))
49 .and(with_config(config))
50 .and_then(simulation::simulate_bundle)
51}
52
53/// POST /simulate-stateful
54pub fn simulate_stateful_new(

Callers 1

simulate_routesFunction · 0.70

Calls 2

json_bodyFunction · 0.85
with_configFunction · 0.85

Tested by

no test coverage detected