diff options
| author | Fuwn <[email protected]> | 2023-04-03 03:06:26 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-03 03:06:26 +0000 |
| commit | 3c030a23833a650af890491ef6e969f93c94b466 (patch) | |
| tree | 3daa321ea0eafa5df57172d587b0d67d4a70f56a /src/context.rs | |
| parent | refactor(returnable): seperate contexts (diff) | |
| download | windmark-3c030a23833a650af890491ef6e969f93c94b466.tar.xz windmark-3c030a23833a650af890491ef6e969f93c94b466.zip | |
refactor(context): callback -> hook
Diffstat (limited to 'src/context.rs')
| -rw-r--r-- | src/context.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/context.rs b/src/context.rs index 21fdcc8..03c0912 100644 --- a/src/context.rs +++ b/src/context.rs @@ -16,10 +16,10 @@ // Copyright (C) 2022-2022 Fuwn <[email protected]> // SPDX-License-Identifier: GPL-3.0-only -mod callback; +mod hook; mod error; mod route; -pub use callback::CallbackContext; +pub use hook::HookContext; pub use error::ErrorContext; pub use route::RouteContext; |