botx_api_framework/handlers/
cts_login.rs

1use botx_api::bot::models::CtsLoginCommand;
2
3use crate::{contexts::RequestContext, results::CommandResult};
4
5#[async_trait_with_sync::async_trait]
6pub trait ICtsLoginHandler: Send + Sync {
7    async fn handle(&mut self, event: CtsLoginCommand<serde_json::Value>, request_context: RequestContext) -> CommandResult;
8}