예제 #1
0
파일: Tags.cs 프로젝트: Phytal/Wsashi
        public async Task RemoveTag(string tagName)
        {
            var guildAcc = GlobalGuildAccounts.GetGuildAccount(Context.Guild.Id);
            var response = TagFunctions.RemoveTag(tagName, guildAcc);

            await ReplyAsync(response);
        }
예제 #2
0
파일: Tags.cs 프로젝트: Phytal/Wsashi
        public async Task RemoveTag(string tagName)
        {
            var userAcc  = GlobalUserAccounts.GetUserAccount(Context.User.Id);
            var response = TagFunctions.RemoveTag(tagName, userAcc);

            await ReplyAsync(response);
        }