()
| 116 | } |
| 117 | |
| 118 | async function start() { |
| 119 | let taskall = []; |
| 120 | for (let user of userList) { |
| 121 | if (user.ckStatus) { |
| 122 | taskall.push(await user.main()); |
| 123 | } |
| 124 | } |
| 125 | await Promise.all(taskall); |
| 126 | } |
| 127 | |
| 128 | !(async () => { |
| 129 | if (!(await checkEnv())) return; |