Skip to main content

mollendorff_forge/api/
mod.rs

1//! Forge API Server module (v2.0.0)
2//!
3//! Provides HTTP REST API for enterprise integration.
4//! Run with `forge serve`.
5
6pub mod handlers;
7pub mod server;
8
9pub use server::run_api_server;