예제 #1
0
        public override async Task Run()
        {
            Console.Clear();
            try
            {
                var response = await _usersClient.GetBalanceAsync();

                Console.WriteLine($"Current balance: {response.Balance}");
                ShowPressAnyKeyPrompt();
            }
            catch (Exception ex)
            {
                ShowError(ex);
            }
        }