1//! Extract data from the query parameters of incoming requests. 2 3pub mod errors; 4mod query_params; 5 6pub use query_params::QueryParams;