123456789101112131415161718192021222324 |
- /// +----------------------------------------------------------------------
- // | HTTP 全局监听口[监听远程执行执行]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016-2017 ,Lioc All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: Mr Table <admin@hjf.pw>
- // +----------------------------------------------------------------------
- class Complete {
- app = null;
- constructor(http) {
- this.app = getApp();
- }
- //不支持拦截
- create() {
-
- }
-
-
-
- }
- export default Complete;
|