(
app: Application, options: Options, handlers: _RouteHandlerSpecs
)
| 136 | |
| 137 | |
| 138 | def _add_handler( |
| 139 | app: Application, options: Options, handlers: _RouteHandlerSpecs |
| 140 | ) -> None: |
| 141 | prefixed_handlers: list[Any] = [ |
| 142 | (urljoin(options.url_prefix, route_pattern), *tuple(handler_info)) |
| 143 | for route_pattern, *handler_info in handlers |
| 144 | ] |
| 145 | app.add_handlers(r".*", prefixed_handlers) |
| 146 | |
| 147 | |
| 148 | def _setup_single_view_dispatcher_route( |