(
&self,
_api_notifier: EventFd,
_api_sender: Sender<ApiRequest>,
_body: &Option<Body>,
)
| 155 | } |
| 156 | |
| 157 | fn get_handler( |
| 158 | &self, |
| 159 | _api_notifier: EventFd, |
| 160 | _api_sender: Sender<ApiRequest>, |
| 161 | _body: &Option<Body>, |
| 162 | ) -> std::result::Result<Option<Body>, HttpError> { |
| 163 | Err(HttpError::BadRequest) |
| 164 | } |
| 165 | } |
| 166 | |
| 167 | /// An HTTP routes structure. |
no outgoing calls
no test coverage detected