Skip to main content

aster/hooks/
mod.rs

1//! Hooks 系统
2//!
3//! 支持在工具调用前后执行自定义脚本或回调
4
5mod executor;
6pub mod internal;
7mod loader;
8mod registry;
9mod types;
10
11pub use executor::*;
12pub use internal::*;
13pub use loader::*;
14pub use registry::*;
15pub use types::*;
16
17#[cfg(test)]
18mod tests;