()
| 96 | } |
| 97 | |
| 98 | async start(): Promise<string> { |
| 99 | return (this.startPromise ??= (async () => { |
| 100 | await this.loadStoredData(); |
| 101 | return super.start(); |
| 102 | })()); |
| 103 | } |
| 104 | |
| 105 | async updateConfig(config: Partial<ReplayingCapiProxyState>): Promise<void> { |
| 106 | if (!config.filePath || !config.workDir) { |
nothing calls this directly
no test coverage detected