runApp function

void runApp(
  1. Component app
)

Main entry point on the server TODO: Add hint about usage of global variables and isolate state

Implementation

void runApp(Component app) {
  _checkInitialized('runApp');
  ServerApp.run(_createSetup(app));
}