1//! Terminal UI for watch mode. 2 3mod app; 4mod message; 5mod watcher; 6 7pub use app::{TuiApp, draw, poll_quit_event}; 8pub use message::Message; 9pub use watcher::watch_all;