codetether_agent/tui/app/watchdog/mod.rs
1//! Watchdog stalled-request recovery module.
2
3pub mod detector;
4pub mod handler;
5pub mod notification;
6pub mod state;
7
8pub use detector::check_watchdog_stall;
9pub use handler::{handle_watchdog_cancel, handle_watchdog_dismiss};
10pub use notification::render_watchdog_notification;
11pub use state::WatchdogNotification;