1#![doc = include_str!("../README.md")]
2
3#[cfg(feature = "events")]
4mod events_impl;
5
6#[cfg(feature = "events")]
7pub use events_impl::*;
8
9#[cfg(not(feature = "events"))]
10mod old_impl;
11
12#[cfg(not(feature = "events"))]
13pub use old_impl::*;