1 2 3 4 5 6 7 8 9 10 11
//! Notification system for hook events. //! //! Provides terminal bell, webhook, and TUI badge notifications. pub mod bell; pub mod manager; pub mod webhook; pub use bell::TerminalBell; pub use manager::{NotificationManager, NotificationStatus}; pub use webhook::WebhookNotifier;