public async Task Binance([Remainder] string crypto)
        {
            string message = await RESTService.GetBinancePrice(crypto);

            await ReplyAsync($"The price of {crypto} on binance is: $ {message}");
        }