(
protected readonly _rootContext: Context,
protected readonly _serverConfig: RestServerResolvedConfig,
protected readonly _routes = new RoutingTable(),
)
| 34 | public handleRequest: (request: Request, response: Response) => Promise<void>; |
| 35 | |
| 36 | constructor( |
| 37 | protected readonly _rootContext: Context, |
| 38 | protected readonly _serverConfig: RestServerResolvedConfig, |
| 39 | protected readonly _routes = new RoutingTable(), |
| 40 | ) { |
| 41 | this.handleRequest = (req, res) => this._handleRequest(req, res); |
| 42 | } |
| 43 | |
| 44 | registerController<T extends object>( |
| 45 | spec: ControllerSpec, |
nothing calls this directly
no test coverage detected