(lang)
| 27 | } |
| 28 | |
| 29 | async function getLanguageProgress(lang) { |
| 30 | const res = await axios.get(`${baseUrl}/projects/${projectId}/languages/${lang}/progress`, { headers }); |
| 31 | return res.data.data; |
| 32 | } |
| 33 | |
| 34 | async function getProjectBranches() { |
| 35 | const res = await axios.get(`${baseUrl}/projects/${projectId}/branches`, { headers }); |