Router should have the ability to route a path to another app, so that there can be several apps in a single project. Like this: ``` go app = NewApp() anotherApp = NewApp() app.Route("/admin", anotherApp) ```