(self, url, handler)
| 73 | return app |
| 74 | |
| 75 | def add_handler(self, url, handler): |
| 76 | self.app.router.add_route('GET', url, handler) |
| 77 | |
| 78 | def add_page(self, url='/', links=None, body=None, content_type=None): |
| 79 | if not body: |
no outgoing calls
no test coverage detected