(slug, path)
| 83 | } |
| 84 | |
| 85 | export const deleteSkillFile = async (slug, path) => { |
| 86 | return apiDelete(`${BASE_URL}/${encodeURIComponent(slug)}/file?path=${encodeURIComponent(path)}`) |
| 87 | } |
| 88 | |
| 89 | export const exportSkill = async (slug) => { |
| 90 | return apiGet(`${BASE_URL}/${encodeURIComponent(slug)}/export`, {}, true, 'blob') |
nothing calls this directly
no test coverage detected