(self, method, path, handler,
*, name=None, expect_handler=None)
| 829 | return resource |
| 830 | |
| 831 | def add_route(self, method, path, handler, |
| 832 | *, name=None, expect_handler=None): |
| 833 | resource = self.add_resource(path, name=name) |
| 834 | return resource.add_route(method, handler, |
| 835 | expect_handler=expect_handler) |
| 836 | |
| 837 | def add_static(self, prefix, path, *, name=None, expect_handler=None, |
| 838 | chunk_size=256*1024, response_factory=StreamResponse): |
nothing calls this directly
no test coverage detected