添加openapi模块

This commit is contained in:
hanhh
2021-08-26 19:01:39 +08:00
parent 7739cef7b8
commit 1e58254f4c
12 changed files with 730 additions and 47 deletions
+2
View File
@@ -5,6 +5,7 @@ import config from './config';
import log from './log';
import cron from './cron';
import script from './script';
import open from './open';
export default () => {
const app = Router();
@@ -14,6 +15,7 @@ export default () => {
log(app);
cron(app);
script(app);
open(app);
return app;
};