Exemplo n.º 1
0
        public async Task RandomRedditTopicAsync(CommandContext ctx)
        {
            await ctx.TriggerTypingAsync();

            var topic = await _redditService.GetRandomTopicAsync();

            var embed = _redditEmbedGenerator.Build(topic);

            await ctx.RespondAsync(embed : embed);
        }