Added .eval command. Very dangerous, don't use.

This commit is contained in:
Kwoth
2022-06-23 13:19:41 +00:00
parent f1d9db699f
commit df85b3b250
8 changed files with 126 additions and 65 deletions

View File

@@ -0,0 +1,13 @@
// ReSharper disable InconsistentNaming
#nullable disable
namespace NadekoBot.Modules.Utility;
public class EvalGlobals
{
public ICommandContext ctx;
public Utility.EvalCommands self;
public IUser user;
public IMessageChannel channel;
public IGuild guild;
public IServiceProvider services;
}