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(); } } }