j-cli 12.9.73

A fast CLI tool for alias management, daily reports, and productivity
1
2
3
4
5
6
7
8
9
10
11
12
pub mod definition;
pub mod executor;
pub mod manager;
pub mod types;

#[cfg(test)]
mod tests;

// Re-export all public items used by external modules
pub use definition::HookDef;
pub use manager::HookManager;
pub use types::{HookContext, HookEvent, HookFilter, HookResult, HookType, OnError};