(self, path: str, **kwargs)
| 94 | return self._app.get(path, **kwargs) |
| 95 | |
| 96 | def post(self, path: str, **kwargs): |
| 97 | self._check_and_reserve(path, {"POST"}) |
| 98 | return self._app.post(path, **kwargs) |
| 99 | |
| 100 | def put(self, path: str, **kwargs): |
| 101 | self._check_and_reserve(path, {"PUT"}) |