/// <summary>
        /// Instantiate required objects and kick of processing
        /// </summary>
        static void ExecuteHandler(Options options)
        {
            var consoleStream = new Models.ConsoleStream(Console.Error, Console.Out);

            var handler = new HackerNewsScraperHandler(new HackerNewsService());

            handler.Handle(options, consoleStream);
        }