diff options
| author | Fuwn <[email protected]> | 2023-04-03 03:16:09 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-03 03:16:09 +0000 |
| commit | 52845bfd809332a090fb7941c5fb2478f228e5a2 (patch) | |
| tree | 6e876d556073b21efd730247833e5a9a4823b520 /src/context.rs | |
| parent | refactor(handler): move traits (diff) | |
| download | windmark-52845bfd809332a090fb7941c5fb2478f228e5a2.tar.xz windmark-52845bfd809332a090fb7941c5fb2478f228e5a2.zip | |
fix(context): clippy lints
Diffstat (limited to 'src/context.rs')
| -rw-r--r-- | src/context.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/context.rs b/src/context.rs index 03c0912..68b83fa 100644 --- a/src/context.rs +++ b/src/context.rs @@ -16,10 +16,12 @@ // Copyright (C) 2022-2022 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -mod hook; +#![allow(clippy::module_name_repetitions)] + mod error; +mod hook; mod route; -pub use hook::HookContext; pub use error::ErrorContext; +pub use hook::HookContext; pub use route::RouteContext; |