2025-07-24 23:19:59 +04:00
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using Microsoft.Extensions.Options;
|
|
|
|
|
using Telegrator.Polling;
|
|
|
|
|
|
|
|
|
|
namespace Telegrator.Hosting.Polling
|
|
|
|
|
{
|
2025-07-26 00:01:46 +04:00
|
|
|
/// <inheritdoc/>
|
2025-07-28 20:35:48 +04:00
|
|
|
public class HostUpdateHandlersPool(IOptions<TelegratorOptions> options, ILogger<HostUpdateHandlersPool> logger) : UpdateHandlersPool(options.Value, options.Value.GlobalCancellationToken)
|
2025-07-24 23:19:59 +04:00
|
|
|
{
|
|
|
|
|
private readonly ILogger<HostUpdateHandlersPool> _logger = logger;
|
|
|
|
|
}
|
|
|
|
|
}
|