🚧 CAS integration

This commit is contained in:
2020-03-01 22:46:37 +04:00
parent a7b3f97f1a
commit ed255e2506
7 changed files with 162 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
using Kruzya.TelegramBot.CombotAntiSpam.Combot;
using Kruzya.TelegramBot.Core;
using Microsoft.Extensions.DependencyInjection;
namespace Kruzya.TelegramBot.CombotAntiSpam
{
public class Startup : Module
{
public Startup(Core.Core core) : base(core)
{
}
public override void ConfigureServices(IServiceCollection services)
{
services.AddSingleton<ICombotClient, CombotClient>();
}
}
}