(command)
| 21 | } |
| 22 | |
| 23 | async function runCommand(command) { |
| 24 | const data = await (await axios.get(`${API_URL}/${command})`)).data; |
| 25 | return data.message; |
| 26 | } |
| 27 | |
| 28 | async function getAllTodos() { |
| 29 | const res = await axios.get(`${API_URL}/get_all()`); |
nothing calls this directly
no outgoing calls
no test coverage detected