2025-07-24 23:19:59 +04:00
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
|
using Telegrator;
|
|
|
|
|
|
|
|
|
|
namespace Telegrator.Hosting.Components
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface for Telegram bot hosts.
|
|
|
|
|
/// Combines host application capabilities with reactive Telegram bot functionality.
|
|
|
|
|
/// </summary>
|
2025-07-25 01:26:32 +04:00
|
|
|
public interface ITelegramBotHost : IHost, ITelegratorBot
|
2025-07-24 23:19:59 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|