mirror of
https://github.com/Bubuni-Team/telegram-bot.git
synced 2026-07-31 00:29:24 +03:00
20 lines
512 B
C#
20 lines
512 B
C#
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>();
|
|
}
|
|
}
|
|
}
|