()
| 26 | } |
| 27 | |
| 28 | async function getAllTodos() { |
| 29 | const res = await axios.get(`${API_URL}/get_all()`); |
| 30 | return res.data; |
| 31 | } |
| 32 | |
| 33 | export default { createTodo, deleteTodo, markIncomplete, markComplete, getAllTodos, runCommand }; |
nothing calls this directly
no outgoing calls
no test coverage detected