* Register express Router handler
(cb: () => any)
| 70 | * Register express Router handler |
| 71 | */ |
| 72 | useRouter(cb: () => any): void { |
| 73 | this.appContainer.useRouter = cb; |
| 74 | } |
| 75 | |
| 76 | // Why this property required? |
| 77 | // express fires the middlewares based on the mounted path, even though |