Files

15 lines
354 B
C#
Raw Permalink Normal View History

2020-03-03 14:11:51 +04:00
using System;
using Kruzya.TelegramBot.Core;
using Kruzya.TelegramBot.Core.Data;
2020-03-03 14:11:51 +04:00
using Kruzya.TelegramBot.Core.Extensions;
using Microsoft.Extensions.DependencyInjection;
namespace Kruzya.TelegramBot.UrlLimitations
{
public class UrlLimitations : Module
{
public UrlLimitations(Core.Core core) : base(core)
{
}
}
}