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