* Version incremented and made a little cleanup

This commit is contained in:
2025-07-28 04:19:39 +04:00
parent 6a18d9765b
commit 4e53337496
6 changed files with 4 additions and 24 deletions
@@ -26,16 +26,6 @@ namespace Telegrator.Hosting.Providers
Logger = logger;
}
/*
/// <inheritdoc/>
public override IEnumerable<DescribedHandlerInfo> GetHandlers(IUpdateRouter updateRouter, ITelegramBotClient client, Update update, CancellationToken cancellationToken = default)
{
IEnumerable<DescribedHandlerInfo> handlers = base.GetHandlers(updateRouter, client, update, cancellationToken).ToArray();
Logger.LogInformation("Described handlers : {handlers}", string.Join(", ", handlers.Select(hndlr => hndlr.DisplayString ?? hndlr.HandlerInstance.GetType().Name)));
return handlers;
}
*/
/// <inheritdoc/>
public override UpdateHandlerBase GetHandlerInstance(HandlerDescriptor descriptor, CancellationToken cancellationToken = default)
{