Skip to main content

systemprompt_api/services/
mod.rs

1//! HTTP service layer for the API server.
2//!
3//! Groups the gateway, proxy, middleware, static-content, and server-lifecycle
4//! services that the binary wires together. Re-exports the health-check surface
5//! ([`HealthChecker`], [`HealthSummary`], [`ModuleHealth`], [`ProcessMonitor`])
6//! used by readiness probes.
7
8pub mod gateway;
9pub mod health;
10pub mod middleware;
11pub mod proxy;
12pub mod request_base_url;
13pub mod server;
14pub mod static_content;
15pub mod validation;
16
17pub use health::{HealthChecker, HealthSummary, ModuleHealth, ProcessMonitor};