How to Move Bootstrapping Code Out of AppDelegate
The test project I work on to develop a component of the Word Counter faster sets up a lot of service objects during launch. I shaved off 60 lines of AppDelegate
by introducing bootstrapping as a thing to my code. This way you can prepare a list of Bootstrapping
components and iterate over them to set up one after another.