(input: CreateRequestInput)
| 53 | |
| 54 | #[update(name = "create_request")] |
| 55 | async fn create_request(input: CreateRequestInput) -> ApiResult<CreateRequestResponse> { |
| 56 | CONTROLLER.create_request(input, arg_data_raw_size()).await |
| 57 | } |
| 58 | |
| 59 | #[update(name = "cancel_request")] |
| 60 | async fn cancel_request(input: CancelRequestInput) -> ApiResult<CancelRequestResponse> { |
no test coverage detected