pub trait Handler<T> {
// Required method
fn handle<'life0, 'async_trait>(
&'life0 self,
context: BotContext,
event: BotEvent,
) -> Pin<Box<dyn Future<Output = HandlerControl> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}