Files
telegram-bot/modules/Entertainment/Entertainment.cs
T
2022-01-02 21:56:14 +02:00

13 lines
280 B
C#

using Kruzya.TelegramBot.Core;
using West.TelegramBot.ChatManagement;
namespace West.Entertainment
{
public class Entertainment : Module
{
public Entertainment(Core core) : base(core)
{
core.EnsureLoaded<ChatManagement>();
}
}
}