RegexBot/Modules/ModCommands/Commands/ConfReload.cs

17 lines
725 B
C#
Raw Normal View History

2022-07-18 23:44:31 +00:00
namespace RegexBot.Modules.ModCommands.Commands;
class ConfReload : CommandConfig {
protected override string DefaultUsageMsg => null!;
// No configuration.
public ConfReload(ModCommands module, JObject config) : base(module, config) { }
// Usage: (command)
public override Task Invoke(SocketGuild g, SocketMessage msg) {
throw new NotImplementedException();
// bool status = await RegexBot.Config.ReloadServerConfig();
// string res;
// if (status) res = ":white_check_mark: Configuration reloaded with no issues. Check the console to verify.";
// else res = ":x: Reload failed. Check the console.";
// await msg.Channel.SendMessageAsync(res);
}
}