()
| 283 | } |
| 284 | |
| 285 | async run() { |
| 286 | try { |
| 287 | this.log(`开始执行 ${APP.name}`); |
| 288 | await this.login(); |
| 289 | await this.queryMember(); |
| 290 | await this.queryEntrance(); |
| 291 | await this.signIn(); |
| 292 | await this.queryMember(); |
| 293 | } catch (e) { |
| 294 | this.log(`执行失败: ${e.message || e}`); |
| 295 | } |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | async function main() { |
no test coverage detected