molock 0.2.0

High-performance mock server for CI/CD pipelines and testing
1
2
3
4
5
6
7
8
9
// SPDX-FileCopyrightText: 2026 Molock Team
// SPDX-License-Identifier: Apache-2.0

pub mod app;
pub mod handlers;
pub mod openapi;

pub use app::run_server;
pub use handlers::{health_handler, metrics_handler, request_handler};