Skip to main content

mockforge_import/
lib.rs

1//! Import and code generation utilities for MockForge
2//!
3//! This crate provides functionality to import API definitions from external formats
4//! (OpenAPI, Postman, cURL, HAR, Insomnia, AsyncAPI) and generate mock server code.
5
6#[cfg(feature = "import")]
7pub mod import;
8
9#[cfg(feature = "codegen")]
10pub mod codegen;