(input: SandboxCreateInput)
| 131 | } |
| 132 | |
| 133 | async create(input: SandboxCreateInput): Promise<SandboxHandle> { |
| 134 | await this.ensureImage(this.config.image) |
| 135 | return this.startContainer(this.config.image, input.env) |
| 136 | } |
| 137 | |
| 138 | async resume(input: SandboxResumeInput): Promise<SandboxHandle | null> { |
| 139 | const container = this.docker.getContainer(input.id) |
nothing calls this directly
no test coverage detected