public async Task FlushDatabase(CommandContext ctx) { ConversationData.WriteDatabase(); await ctx.RespondAsync("Wrote conversation database to disk."); }
public async Task ReloadDatabase(CommandContext ctx) { ConversationData.LoadDatabase(); await ctx.RespondAsync("Reloaded conversation database."); }