2021-12-26 13:15:07 +02:00
|
|
|
using Kruzya.TelegramBot.Core;
|
2022-04-21 17:42:44 +03:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using West.TelegramBot.ChatManagement.Service;
|
2021-12-26 13:15:07 +02:00
|
|
|
|
2022-02-14 00:18:53 +02:00
|
|
|
namespace West.TelegramBot.ChatManagement;
|
|
|
|
|
|
|
|
|
|
public class ChatManagement : Module
|
2021-12-26 13:15:07 +02:00
|
|
|
{
|
2022-02-14 00:18:53 +02:00
|
|
|
public ChatManagement(Core core) : base(core)
|
2021-12-26 13:15:07 +02:00
|
|
|
{
|
|
|
|
|
}
|
2022-04-21 17:42:44 +03:00
|
|
|
|
|
|
|
|
public override void ConfigureServices(IServiceCollection services)
|
|
|
|
|
{
|
|
|
|
|
services.AddScoped<RulesService>();
|
|
|
|
|
}
|
2021-12-26 13:15:07 +02:00
|
|
|
}
|