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
12
//! Claude Code hooks integration.
//!
//! IPC server for Claude Code hooks. Hook configuration is now handled by
//! the tazuna plugin (see plugin/ directory).

pub mod event;
pub mod ipc;

pub use event::{HookEvent, HookEventType};
pub use ipc::{
    HooksClient, HooksServer, current_socket_path, default_socket_path, socket_path_for_pid,
};