public IActionResult About([FromQuery] string message, [FromServices] BotService botService)
 {
     if (!string.IsNullOrEmpty(message))
     {
         botService.Broadcast(message);
     }
     return(View());
 }