示例#1
0
        public async Task CheckStatisticAsync(string statName, IUser user = null)
        {
            user = user ?? Context.User;
            var result = await _statController.CheckStatisticAsync(user.Id, statName);

            await ReplyAsync(result.Message);
        }