| 325 | } |
| 326 | |
| 327 | std::string ServiceConfig::GetProjectInfoUrl(std::string_view projectId) const |
| 328 | { |
| 329 | return Substitute( |
| 330 | "{api_url}/project/{project_id}", { |
| 331 | { "api_url", mApiEndpoint }, |
| 332 | { "project_id", projectId }, |
| 333 | }); |
| 334 | } |
| 335 | |
| 336 | std::string ServiceConfig::GetSnapshotInfoUrl( |
| 337 | std::string_view projectId, std::string_view snapshotId) const |
no test coverage detected