1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! Module contains watchers.

pub(crate) mod click;
pub use click::ClickWatcher;

pub(crate) mod selector;
pub use selector::SelectorWatcher;

pub(crate) mod toggle;
pub use toggle::ToggleWatcher;