(slug, payload)
| 61 | } |
| 62 | |
| 63 | export const createSkillFile = async (slug, payload) => { |
| 64 | return apiPost(`${BASE_URL}/${encodeURIComponent(slug)}/file`, payload) |
| 65 | } |
| 66 | |
| 67 | export const updateSkillFile = async (slug, payload) => { |
| 68 | return apiPut(`${BASE_URL}/${encodeURIComponent(slug)}/file`, payload) |