Equals :meth:`route`.
(self, path=None, method='GET', **options)
| 919 | return decorator(callback) if callback else decorator |
| 920 | |
| 921 | def get(self, path=None, method='GET', **options): |
| 922 | """ Equals :meth:`route`. """ |
| 923 | return self.route(path, method, **options) |
| 924 | |
| 925 | def post(self, path=None, method='POST', **options): |
| 926 | """ Equals :meth:`route` with a ``POST`` method parameter. """ |
no test coverage detected