增加初始化过程

This commit is contained in:
hanhh
2021-10-03 20:58:55 +08:00
parent bd1ca7e975
commit 14b20873c7
18 changed files with 714 additions and 223 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import { Router } from 'express';
import auth from './auth';
import user from './user';
import env from './env';
import config from './config';
import log from './log';
@@ -9,7 +9,7 @@ import open from './open';
export default () => {
const app = Router();
auth(app);
user(app);
env(app);
config(app);
log(app);