botx_api_framework/handlers/
message.rs1use crate::{contexts::RequestContext, results::CommandResult};
2
3#[async_trait_with_sync::async_trait]
4pub trait IMessageHandler: Send + Sync {
5 async fn handle(&mut self, message: String, request_context: RequestContext) -> CommandResult;
6}