tazuna 0.1.0

TUI tool for managing multiple Claude Code sessions in parallel
Documentation
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;