/*
Appellation: handlers <module>
Contrib: FL03 <jo3mccain@icloud.com>
*/useasync_trait::async_trait;/// [AsyncHandle] is a trait used to define the method used to process a particular command,
/// event, etc.
#[async_trait]pubtraitAsyncHandle<T> {typeOutput;
async fnhandle(self, ctx:&mut T)->Self::Output;}