use ;
use Request;
/// A type alias with [`AnyhowError`] to use `anyhow::Result` in Rocket framework.
pub type Result<T, E = AnyhowError> = Result;
/// A wrapper of `anyhow::Error` to be able to make use of `anyhow` in Rocket framework.
/// [`rocket::response::Responder`] is implemented to this type.
;