indexbus_platform_http/
prelude.rs

1//! Curated prelude for `indexbus-platform-http`.
2//!
3//! This module re-exports the most commonly used types for applications.
4//!
5//! **Stability note:** prelude contents are a convenience surface and may evolve as the platform
6//! stack grows.
7
8pub use crate::errors::{Error, Result};
9
10pub use crate::server::{
11    HttpServer, Readiness, ReadinessState, DEFAULT_HEALTHZ_PATH, DEFAULT_READYZ_PATH,
12};