Defines the handler that should handle not found requests against this API
(self, *args, **kwargs)
| 129 | return self.http(*args, **kwargs) |
| 130 | |
| 131 | def not_found(self, *args, **kwargs): |
| 132 | """Defines the handler that should handle not found requests against this API""" |
| 133 | kwargs["api"] = self.api |
| 134 | return not_found(*args, **kwargs) |
| 135 | |
| 136 | def static(self, *args, **kwargs): |
| 137 | """Define the routes to static files the API should expose""" |