添加系统更新操作和设置删除日志频率

This commit is contained in:
hanhh
2021-10-12 00:27:42 +08:00
parent 9455ca64a2
commit b1077443a3
19 changed files with 531 additions and 18 deletions
+3 -1
View File
@@ -11,7 +11,7 @@ async function startServer() {
await require('./loaders').default({ expressApp: app });
app
const server = app
.listen(config.port, () => {
Logger.info(`
################################################
@@ -23,6 +23,8 @@ async function startServer() {
Logger.error(err);
process.exit(1);
});
await require('./loaders/sock').default({ server });
}
startServer();