use super::GatewayApp;
use crate::commands::DispatcherToGatewayCmd;
use crate::error::Error;
impl GatewayApp {
pub(super) async fn handle_dispatcher_cmd(
&mut self,
cmd: DispatcherToGatewayCmd,
) -> Result<(), Error> {
log::info!("cmd: {:?}", cmd);
Ok(())
}
}