1
2
3
4
5
6
7
8
extern crate rsevents;

mod countdown;

/// Re-export [`rsevents::Awaitable`] so consumers of this crate do not need to add an explicit
/// dependency on `rsevents` just to wait on one of our events.
pub use rsevents::Awaitable;
pub use self::countdown::CountdownEvent;