(hash: string, id: number, content: string)
| 33 | |
| 34 | // POST /api/workplan/edit |
| 35 | export function editWorkPlanTodo(hash: string, id: number, content: string) { |
| 36 | return http.post("/workplan/edit", { hash, id, content }); |
| 37 | } |
| 38 | |
| 39 | // POST /api/workplan/delete |
| 40 | export function deleteWorkPlanTodo(hash: string, id: number) { |
nothing calls this directly
no outgoing calls
no test coverage detected