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