(title)
| 7 | } |
| 8 | |
| 9 | async function deleteTodo(title) { |
| 10 | const data = await (await axios.get(`${API_URL}/delete(${title})`)).data; |
| 11 | return data.message; |
| 12 | } |
| 13 | |
| 14 | async function markIncomplete(title) { |
| 15 | const data = await (await axios.get(`${API_URL}/mark_incomplete(${title})`)).data; |
nothing calls this directly
no outgoing calls
no test coverage detected