An application runner which consumes a main class annotated with governator's
Bootstrap annotations.
This is shorthand for:
com.netflix.karyon.forApplication(MyApp.class).startAndWaitTillShutdown()
where the name of the Application class is passed as the argument to the main method.
This is useful while creating standard packaging scripts where the main class for starting the JVM remains the same
and the actual application class differs from one application to another.
If you are bootstrapping karyon programmatically, it is better to use
Karyon directly.