Пример #1
0
 public async Task FlushDatabase(CommandContext ctx)
 {
     ConversationData.WriteDatabase();
     await ctx.RespondAsync("Wrote conversation database to disk.");
 }
Пример #2
0
 public async Task ReloadDatabase(CommandContext ctx)
 {
     ConversationData.LoadDatabase();
     await ctx.RespondAsync("Reloaded conversation database.");
 }