A Tower service that implements the CGI protocol (RFC 3875).
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")), );
MIT