public async Task <IActionResult> SendMessageAsync([FromBody] MessageRequest input)
        {
            _chatAppServices.CreateAsync(input);
            //await _distributedEventBus.PublishAsync(input);
            await _kafkaProducer.MessageToKafka(input);

            return(Ok());
        }