Move fun commands to separate module.

This commit is contained in:
West14
2022-01-02 21:56:14 +02:00
parent d2077df114
commit 8d3e24295b
10 changed files with 126 additions and 93 deletions
+13
View File
@@ -0,0 +1,13 @@
using Kruzya.TelegramBot.Core;
using West.TelegramBot.ChatManagement;
namespace West.Entertainment
{
public class Entertainment : Module
{
public Entertainment(Core core) : base(core)
{
core.EnsureLoaded<ChatManagement>();
}
}
}