Expand description
A Tower service that implements the CGI protocol (RFC 3875).
§Example
use axum::{Router, routing::any_service};
use cgi_service::CgiService;
let app: Router = Router::new().route(
"/",
any_service(CgiService::new("/usr/lib/cgi-bin/script")),
);Structs§
- CgiConfig
- Configuration for a CGI service.
- CgiService
- A Tower service that executes CGI scripts.