Skip to main content

mockforge_intelligence/handlers/
mod.rs

1//! HTTP handlers for AI-coupled features.
2//!
3//! Issue #555 carves the AI-touching handler files out of
4//! `mockforge-http/src/handlers/` and re-homes them next to the
5//! intelligence logic they wrap. The HTTP crate keeps thin
6//! re-export shims at the legacy paths for one minor version so
7//! router-construction code in `mockforge_http::lib` keeps resolving
8//! unchanged.
9//!
10//! Currently migrated:
11//! - [`pr_generation`]: PR generation HTTP surface (#555 phase 2). The
12//!   underlying `pr_generation` module moved in #562 phase 1; the
13//!   handler followed once intelligence grew an axum dep.
14
15pub mod pr_generation;