Skip to main content

cegla_fcgi/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3//! A high-level FastCGI implementation for Rust.
4
5pub mod protocol;
6
7#[cfg(feature = "client")]
8pub mod client;
9#[cfg(feature = "server")]
10pub mod server;
11
12pub use cegla::CgiEnvironment;