()
| 139 | } |
| 140 | |
| 141 | async function help() { |
| 142 | return |
| 143 | console.log(`\n开始助力好友`); |
| 144 | for (let code of newShareCodes) { |
| 145 | if (!code) continue; |
| 146 | const res = await smtgDoAssistPkTask(code); |
| 147 | console.log(`助力好友${JSON.stringify(res)}`); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | async function doDailyTask() { |
| 152 | const smtgQueryShopTaskRes = await smtgQueryShopTask(); |
nothing calls this directly
no test coverage detected