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

19 lines
474 B
C#
Raw Normal View History

2020-03-03 14:11:51 +04:00
using System;
using Kruzya.TelegramBot.Core;
using Kruzya.TelegramBot.Core.Extensions;
using Microsoft.Extensions.DependencyInjection;
namespace Kruzya.TelegramBot.UrlLimitations
{
public class UrlLimitations : Module
{
public UrlLimitations(Core.Core core) : base(core)
{
}
public override void ConfigureServices(IServiceCollection services)
{
services.AddMemoryCache<ChatMember, UInt16>();
}
}
}