Builds a new GET HTTP route that is registered to this API
(self, *args, **kwargs)
| 159 | return Object(*args, **kwargs) |
| 160 | |
| 161 | def get(self, *args, **kwargs): |
| 162 | """Builds a new GET HTTP route that is registered to this API""" |
| 163 | kwargs["api"] = self.api |
| 164 | kwargs["accept"] = ("GET",) |
| 165 | return http(*args, **kwargs) |
| 166 | |
| 167 | def post(self, *args, **kwargs): |
| 168 | """Builds a new POST HTTP route that is registered to this API""" |
no outgoing calls