Equals :meth:`route`.
(self, path=None, method='GET', **options)
| 822 | return decorator(callback) if callback else decorator |
| 823 | |
| 824 | def get(self, path=None, method='GET', **options): |
| 825 | """ Equals :meth:`route`. """ |
| 826 | return self.route(path, method, **options) |
| 827 | |
| 828 | def post(self, path=None, method='POST', **options): |
| 829 | """ Equals :meth:`route` with a ``POST`` method parameter. """ |
no test coverage detected