| 399 | } |
| 400 | |
| 401 | std::string ServiceConfig::GetAudioDownloadListUrl(std::string_view audioId) const { |
| 402 | return Substitute( |
| 403 | "{api_url}/download/{audio_id}", |
| 404 | { |
| 405 | { "api_url", mApiEndpoint }, |
| 406 | { "audio_id", audioId }, |
| 407 | }); |
| 408 | } |
| 409 | |
| 410 | std::string ServiceConfig::GetNetworkStatsUrl(std::string_view projectId) const |
| 411 | { |
no test coverage detected