Files
telegram-bot/modules/CustomChatAddOns/CustomChatAddOns.cs
T

20 lines
512 B
C#
Raw Normal View History

2024-05-29 00:28:17 +03:00
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>();
}
}
}