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/lib.rs | |
| parent | refactor(handler): move traits (diff) | |
| download | windmark-52845bfd809332a090fb7941c5fb2478f228e5a2.tar.xz windmark-52845bfd809332a090fb7941c5fb2478f228e5a2.zip | |
fix(context): clippy lints
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,10 +30,10 @@ #![doc = include_str!("../README.md")] #![recursion_limit = "128"] +pub mod context; pub mod handler; pub mod module; pub mod response; -pub mod context; pub mod router; pub mod utilities; |