Fixed wrong import

This commit is contained in:
Franklin 2022-08-31 14:48:34 -04:00
parent cf86e15cb7
commit f6e2bd7272
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View File

@ -183,7 +183,7 @@ dependencies = [
[[package]] [[package]]
name = "actix-web-utils" name = "actix-web-utils"
version = "0.2.12" version = "0.2.13"
dependencies = [ dependencies = [
"actix-web", "actix-web",
"log", "log",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "actix-web-utils" name = "actix-web-utils"
version = "0.2.12" version = "0.2.13"
edition = "2021" edition = "2021"
authors = ["Franklin E. Blanco"] authors = ["Franklin E. Blanco"]
description = "Just some useful addons for actix web." description = "Just some useful addons for actix web."

View File

@ -21,7 +21,7 @@ macro_rules! unwrap_or_return_handled_error {
}; };
( $error_status_code:literal, $success_status_code:literal, $e:expr, $type_of_resp:ty) => { ( $error_status_code:literal, $success_status_code:literal, $e:expr, $type_of_resp:ty) => {
match $e { match $e {
Ok(value) => return actix_web_utils::typed_response::TypedHttpResponse::return_standard_response($success_status_code, value), Ok(value) => return actix_web_utils::extensions::typed_response::TypedHttpResponse::return_standard_response($success_status_code, value),
Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable::<$type_of_resp>(&error, $error_status_code) Err(error) => return actix_web_utils::traits::macro_traits::ReturnableErrorShape::convert_to_returnable::<$type_of_resp>(&error, $error_status_code)
} }
} }