()
| 98 | |
| 99 | // Function to get all stickcmds |
| 100 | async function getAllStickCmds() { |
| 101 | try { |
| 102 | const data = loadStickcmdData(); |
| 103 | return Object.keys(data); // Return all command keys |
| 104 | } catch (error) { |
| 105 | console.error('Error while retrieving all stickcmds:', error); |
| 106 | return []; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | module.exports = { |
| 111 | addstickcmd, |
nothing calls this directly
no test coverage detected