1 2 3 4 5 6 7 8 9
//! Watch runtime: events, editor bridge, and daemon. mod editor_bridge; mod events; mod runtime; pub use editor_bridge::EditorHooks; pub use events::{ChangeEvent, WatchConfig}; pub use runtime::WatchDaemon;