prom_remote_api/web/
mod.rs

1//! This module provides various middlewares/handlers for popular web framework to
2//! help implementing write/read procotols of remote storage.
3
4#[cfg(feature = "actix")]
5pub mod actix;
6#[cfg(feature = "warp")]
7pub mod warp;