(name: string, description: string, content: string)
| 290 | } |
| 291 | |
| 292 | export async function saveSkill(name: string, description: string, content: string): Promise<void> { |
| 293 | await api.post(`/skills/${name}`, { description, content }); |
| 294 | } |
| 295 | |
| 296 | export async function deleteSkill(name: string): Promise<void> { |
| 297 | await api.delete(`/skills/${name}`); |
no outgoing calls
no test coverage detected