Equals :meth:`route`.
(self, path=None, method='GET', **options)
| 685 | return decorator(callback) if callback else decorator |
| 686 | |
| 687 | def get(self, path=None, method='GET', **options): |
| 688 | """ Equals :meth:`route`. """ |
| 689 | return self.route(path, method, **options) |
| 690 | |
| 691 | def post(self, path=None, method='POST', **options): |
| 692 | """ Equals :meth:`route` with a ``POST`` method parameter. """ |
no test coverage detected