1pub mod cli; 2pub mod web; 3 4pub use cli::{CliRequest, CliRequestError}; 5pub use web::{Method, WebRequest, WebRequestError}; 6 7#[cfg(feature = "http")] 8pub use web::{from_http_parts, from_http_request};