(input: CancelRequestInput)
| 58 | |
| 59 | #[update(name = "cancel_request")] |
| 60 | async fn cancel_request(input: CancelRequestInput) -> ApiResult<CancelRequestResponse> { |
| 61 | CONTROLLER.cancel_request(input).await |
| 62 | } |
| 63 | |
| 64 | #[update(name = "try_execute_request", hidden = true)] |
| 65 | async fn try_execute_request(id: UUID) -> Result<(), RequestExecuteError> { |
nothing calls this directly
no test coverage detected