(title)
| 16 | return data.message; |
| 17 | } |
| 18 | async function markComplete(title) { |
| 19 | const data = await (await axios.get(`${API_URL}/mark_complete(${title})`)).data |
| 20 | return data.message; |
| 21 | } |
| 22 | |
| 23 | async function runCommand(command) { |
| 24 | const data = await (await axios.get(`${API_URL}/${command})`)).data; |
nothing calls this directly
no outgoing calls
no test coverage detected