()
| 256 | } |
| 257 | |
| 258 | private async handleExitFromUi(): Promise<void> { |
| 259 | logger.debug('[codex-remote]: Exiting agent via Ctrl-C'); |
| 260 | this.exitReason = 'exit'; |
| 261 | this.shouldExit = true; |
| 262 | await this.handleAbort(); |
| 263 | } |
| 264 | |
| 265 | private async handleSwitchFromUi(): Promise<void> { |
| 266 | logger.debug('[codex-remote]: Switching to local mode via double space'); |
no test coverage detected