start working on custom chat handlers

This commit is contained in:
2024-05-29 00:28:17 +03:00
parent 920148e05b
commit 621ce7fbce
7 changed files with 154 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
using Kruzya.TelegramBot.Core;
using Kruzya.TelegramBot.Core.Extensions;
using Kruzya.TelegramBot.CustomChatAddOns.Options;
using Microsoft.Extensions.DependencyInjection;
namespace Kruzya.TelegramBot.CustomChatAddOns
{
public class CustomChatAddOns : Module
{
public CustomChatAddOns(Core.Core core) : base(core)
{
}
public override void ConfigureServices(IServiceCollection services)
{
services.AddOption<CustomChatHandler>();
}
}
}