(
private agent: HttpAgent = new HttpAgent({ host: appInitConfig.apiGatewayUrl.toString() }),
)
| 7 | private isReady = false; |
| 8 | |
| 9 | constructor( |
| 10 | private agent: HttpAgent = new HttpAgent({ host: appInitConfig.apiGatewayUrl.toString() }), |
| 11 | ) { |
| 12 | this.agent = agent; |
| 13 | } |
| 14 | |
| 15 | async init(): Promise<void> { |
| 16 | if (this.isReady) { |