优化 异步调用方式

This commit is contained in:
Suwings 2022-05-23 15:27:46 +08:00
parent 31230ba18f
commit 91d1f24a22

View File

@ -45,4 +45,7 @@ setTimeout(async () => {
}
}, 1000 * 60 * 60 * 24);
statistics();
// 面板启动时进行统计一次
statistics()
.then(() => {})
.catch(() => {});