| 444 | } |
| 445 | |
| 446 | std::string ServiceConfig::GetTaskPollUrl() const |
| 447 | { |
| 448 | return Substitute( |
| 449 | "{api_url}/audacity/task/pending", |
| 450 | { |
| 451 | { "api_url", mApiEndpoint }, |
| 452 | }); |
| 453 | } |
| 454 | |
| 455 | std::string ServiceConfig::GetTaskAckUrl(std::string_view taskId) const |
| 456 | { |
no test coverage detected