2025-07-28 20:35:48 +04:00
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
|
using Microsoft.AspNetCore.Routing;
|
|
|
|
|
using Telegrator.Hosting.Components;
|
2025-07-24 23:19:59 +04:00
|
|
|
|
|
|
|
|
namespace Telegrator.Hosting.Web.Components
|
|
|
|
|
{
|
2025-07-28 20:35:48 +04:00
|
|
|
/// <summary>
|
|
|
|
|
/// Interface for Telegram bot hosts with Webhook update receiving.
|
|
|
|
|
/// Combines wbe application capabilities with reactive Telegram bot functionality.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITelegramBotWebHost : ITelegramBotHost, IEndpointRouteBuilder, IApplicationBuilder, IAsyncDisposable
|
2025-07-24 23:19:59 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|