protected override async Task Handle(TestRequest request, CancellationToken cancellationToken)
        {
            _logger.LogInformation("Starting Test Handler");

            Event @event = await _eventService.GetNextEventAsync();

            _logger.LogInformation($"The Next Event is: {@event.Title}");

            await _telegramService.GetSubscribedChats();

            await _easyCronService.List();

            string text = await _ocrSpaceService.ReadImageText(new Uri(@event.ImageUrl));

            _logger.LogInformation($"Text (GetText): \r\n{text}");

            _logger.LogInformation("Finish Test Handler");
        }