1#![doc = include_str!("../README.md")] 2 3#[cfg(test)] 4mod test; 5 6mod without_args; 7mod with_args; 8 9pub use self::{ 10 without_args::CallbackCell, 11 with_args::CallbackCellArgs, 12};