添加log查询api

This commit is contained in:
whyour
2021-03-18 23:51:35 +08:00
parent b2c22327f9
commit c0f09ec5bb
8 changed files with 103 additions and 73 deletions
+2
View File
@@ -2,11 +2,13 @@ import { Router } from 'express';
import auth from './auth';
import cookie from './cookie';
import config from './config';
import log from './log';
export default () => {
const app = Router();
auth(app);
cookie(app);
config(app);
log(app);
return app;
};