public async Task AddOrUpdate(string key, SocketUser user, [Remainder] string message = null)
        {
            string output = KeyWordChecker.AddOrUpdateKey_KeyToWords(key, user.Mention + " " + message);

            await ReplyAsync(output);
        }
        public async Task AddOrUpdate(string key, [Remainder] string word = null)
        {
            string output = KeyWordChecker.AddOrUpdateKey_KeyToWords(key, word);

            await ReplyAsync(output);
        }