(slug, path)
| 57 | } |
| 58 | |
| 59 | export const getSkillFile = async (slug, path) => { |
| 60 | return apiGet(`${BASE_URL}/${encodeURIComponent(slug)}/file?path=${encodeURIComponent(path)}`) |
| 61 | } |
| 62 | |
| 63 | export const createSkillFile = async (slug, payload) => { |
| 64 | return apiPost(`${BASE_URL}/${encodeURIComponent(slug)}/file`, payload) |