5320c9ec20
* Fixed wrong LeveldDebug method calls after moving logic from providers to router * Added independent "IndentFlags" property to inner debugger class * Fixed debug logging in few places * Removed "ICollectingOptions" and merged it with new options abstract "ITelegratorOptions" * Added WebHook version of hosting class
13 lines
401 B
C#
13 lines
401 B
C#
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using Telegrator.Providers;
|
|
|
|
namespace Telegrator.Hosting.Providers
|
|
{
|
|
/// <inheritdoc/>
|
|
public class HostAwaitingProvider(IOptions<TelegratorOptions> options, ILogger<HostAwaitingProvider> logger) : AwaitingProvider(options.Value)
|
|
{
|
|
private readonly ILogger<HostAwaitingProvider> _logger = logger;
|
|
}
|
|
}
|