public async Task <int> ExecuteAsync(CancellationToken cancellationToken)
        {
            try
            {
                var clients = await _clientsService.GetClientsAsync();

                _logger.LogInformation("Clients: {@clients}", clients);
                return(0);
            }
            catch (Exception ex)
            {
                _logger.LogError(ex.Message);
                return(ex.HResult);
            }
        }