Expand description
§MockForge Runtime Daemon
Zero-config mode runtime daemon that automatically creates mocks from 404 responses.
This crate provides the “invisible mock server” experience - when a user hits an endpoint that doesn’t exist, the daemon automatically:
- Creates a mock endpoint
- Generates a type
- Generates a client stub
- Adds to OpenAPI schema
- Adds an example response
- Sets up a scenario
This is “mock server in your shadow” — an AI-assisted backend-on-demand.
Re-exports§
pub use auto_generator::AutoGenerator;pub use config::RuntimeDaemonConfig;pub use detector::NotFoundDetector;
Modules§
- auto_
generator - Auto-generator for creating mocks from 404 responses
- config
- Configuration for the runtime daemon
- detector
- 404 detection middleware for the runtime daemon
Structs§
- Runtime
Daemon - Runtime daemon for auto-creating mocks from 404s