pub trait Handler: Send + Sync + 'static { // Required method fn handle( &self, config: Config, event: Event, ) -> Result<Response, HandleError>; }