添加依赖管理

This commit is contained in:
whyour
2021-10-23 18:23:32 +08:00
parent bad247c51c
commit 795d1b938d
19 changed files with 1170 additions and 17 deletions
+2
View File
@@ -6,6 +6,7 @@ import log from './log';
import cron from './cron';
import script from './script';
import open from './open';
import dependence from './dependence';
export default () => {
const app = Router();
@@ -16,6 +17,7 @@ export default () => {
cron(app);
script(app);
open(app);
dependence(app);
return app;
};