Exemple #1
0
        public async Task Gazo()
        {
            var tweetMsg = TwitterController.GetUsersRandomTweet("idol_gazo");

            await ReplyAsync(tweetMsg);
        }
Exemple #2
0
        public async Task RandomTweet([Remainder] string twitterAccount)
        {
            var tweetMsg = TwitterController.GetUsersRandomTweet(twitterAccount);

            await ReplyAsync(string.Format(Resources.response_Twitter_User, twitterAccount, tweetMsg));
        }