()
| 91 | } |
| 92 | |
| 93 | async function start() { |
| 94 | let taskall = []; |
| 95 | for (let user of userList) { |
| 96 | if (user.ckStatus) { |
| 97 | taskall.push(await user.main()); |
| 98 | } |
| 99 | } |
| 100 | await Promise.all(taskall); |
| 101 | } |
| 102 | |
| 103 | !(async () => { |
| 104 | if (!(await checkEnv())) return; |