diff options
| author | Fuwn <[email protected]> | 2023-05-05 01:33:55 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-05 01:33:55 +0000 |
| commit | d66da17c17239408f2ddbc2794621e2d947056a3 (patch) | |
| tree | e448da50c46c429f6ca672aa070577766fffc9bc /src/handler | |
| parent | docs(rossweisse): revert to implementation (diff) | |
| download | windmark-d66da17c17239408f2ddbc2794621e2d947056a3.tar.xz windmark-d66da17c17239408f2ddbc2794621e2d947056a3.zip | |
feat(windmark): prelude feature flag
Diffstat (limited to 'src/handler')
| -rw-r--r-- | src/handler/hooks/post_route.rs | 2 | ||||
| -rw-r--r-- | src/handler/response/error.rs | 2 | ||||
| -rw-r--r-- | src/handler/response/route.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/handler/hooks/post_route.rs b/src/handler/hooks/post_route.rs index 8a92fc6..b8acd35 100644 --- a/src/handler/hooks/post_route.rs +++ b/src/handler/hooks/post_route.rs @@ -15,7 +15,7 @@ // Copyright (C) 2022-2023 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -use crate::{context::HookContext, Response}; +use crate::{context::HookContext, response::Response}; #[allow(clippy::module_name_repetitions)] pub trait PostRouteHook: Send + Sync { diff --git a/src/handler/response/error.rs b/src/handler/response/error.rs index af73001..a8c2745 100644 --- a/src/handler/response/error.rs +++ b/src/handler/response/error.rs @@ -17,7 +17,7 @@ use async_trait::async_trait; -use crate::{context::ErrorContext, Response}; +use crate::{context::ErrorContext, response::Response}; #[allow(clippy::module_name_repetitions)] #[async_trait] diff --git a/src/handler/response/route.rs b/src/handler/response/route.rs index 2604947..0c0d0e9 100644 --- a/src/handler/response/route.rs +++ b/src/handler/response/route.rs @@ -17,7 +17,7 @@ use async_trait::async_trait; -use crate::{context::RouteContext, Response}; +use crate::{context::RouteContext, response::Response}; #[allow(clippy::module_name_repetitions)] #[async_trait] |