using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Routing; using Telegrator.Hosting.Components; namespace Telegrator.Hosting.Web.Components { /// /// Interface for Telegram bot hosts with Webhook update receiving. /// Combines wbe application capabilities with reactive Telegram bot functionality. /// public interface ITelegramBotWebHost : ITelegramBotHost, IEndpointRouteBuilder, IApplicationBuilder, IAsyncDisposable { } }