()
| 135 | |
| 136 | @command('pont.syncRemote') |
| 137 | async syncRemote() { |
| 138 | const currentManager = this.manager.getCurrentOriginManage(); |
| 139 | await showProgress('拉取远程数据源', async (report) => { |
| 140 | report('拉取中...'); |
| 141 | await currentManager.updateRemoteDataSource(); |
| 142 | report('差异比对中...'); |
| 143 | await currentManager.updateDiffs(); |
| 144 | report('完成'); |
| 145 | getPontOriginsProvider().refresh(this.manager); |
| 146 | }); |
| 147 | } |
| 148 | |
| 149 | @command('pont.findInterface') |
| 150 | async findInterface(ignoreEdit = false) { |
nothing calls this directly
no test coverage detected