Example #1
0
        public async Task GetReflinks(string exchange = null)
        {
            var refExchanges = await _refExchangeRepository.GetRefExchanges(exchange);

            if (!refExchanges.Any())
            {
                await ReplyAsync($"Could not find any reflinks"); return;
            }

            await ReplyAsync(null, false, _embedService.EmbedAllReflinks(refExchanges).Build());
        }