增加订阅api

This commit is contained in:
whyour
2022-05-10 19:54:05 +08:00
parent 468ff9c1af
commit 419c5a7c5b
4 changed files with 339 additions and 0 deletions
+2
View File
@@ -8,6 +8,7 @@ import script from './script';
import open from './open';
import dependence from './dependence';
import system from './system';
import subscription from './subscription';
export default () => {
const app = Router();
@@ -20,6 +21,7 @@ export default () => {
open(app);
dependence(app);
system(app);
subscription(app);
return app;
};