20543: Recommend users install Python packages in a virtualenv
[arvados.git] / lib / crunchrun / executor.go
index 0a65f4d63466e840c8e2ff39dfa9614cf01fafce..6ec5b838f681fe3c03a778f966c58979763f9031 100644 (file)
@@ -4,10 +4,10 @@
 package crunchrun
 
 import (
+       "context"
        "io"
 
        "git.arvados.org/arvados.git/sdk/go/arvados"
-       "golang.org/x/net/context"
 )
 
 type bindmount struct {
@@ -62,4 +62,6 @@ type containerExecutor interface {
 
        // Name and version of runtime engine ("docker 20.10.16", "singularity-ce version 3.9.9")
        Runtime() string
+
+       GatewayTarget
 }