| 463 | } |
| 464 | |
| 465 | std::string ServiceConfig::GetTaskResultUrl(std::string_view taskId) const |
| 466 | { |
| 467 | return Substitute( |
| 468 | "{api_url}/audacity/task/result?id={task_id}", |
| 469 | { |
| 470 | { "api_url", mApiEndpoint }, |
| 471 | { "task_id", taskId } |
| 472 | }); |
| 473 | } |
| 474 | |
| 475 | const ServiceConfig& GetServiceConfig() |
| 476 | { |
no test coverage detected