| 453 | } |
| 454 | |
| 455 | std::string ServiceConfig::GetTaskAckUrl(std::string_view taskId) const |
| 456 | { |
| 457 | return Substitute( |
| 458 | "{api_url}/audacity/task/ack?id={task_id}", |
| 459 | { |
| 460 | { "api_url", mApiEndpoint }, |
| 461 | { "task_id", taskId } |
| 462 | }); |
| 463 | } |
| 464 | |
| 465 | std::string ServiceConfig::GetTaskResultUrl(std::string_view taskId) const |
| 466 | { |
no test coverage detected