(containerName: string)
| 314 | } |
| 315 | |
| 316 | private async assertContainerExists(containerName: string) { |
| 317 | const doesContainerExist = await this.doesContainerExist(containerName) |
| 318 | if (!doesContainerExist) { |
| 319 | throw new TRPCError({ code: 'NOT_FOUND', message: `Container ${containerName} not found` }) |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | async execPython( |
| 324 | containerName: string, |
no test coverage detected