github.com/containers/libpod@v1.9.4-0.20220419124438-4284fd425507/pkg/domain/infra/tunnel/runtime.go (about) 1 package tunnel 2 3 import ( 4 "context" 5 ) 6 7 // Image-related runtime using an ssh-tunnel to utilize Podman service 8 type ImageEngine struct { 9 ClientCxt context.Context 10 } 11 12 // Container-related runtime using an ssh-tunnel to utilize Podman service 13 type ContainerEngine struct { 14 ClientCxt context.Context 15 }