using Microsoft.Extensions.Hosting; using Telegrator; namespace Telegrator.Hosting.Components { /// /// Interface for Telegram bot hosts. /// Combines host application capabilities with reactive Telegram bot functionality. /// public interface ITelegramBotHost : IHost, IReactiveTelegramBot { } }