github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/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  }
    16  
    17  // Container-related runtime using an ssh-tunnel to utilize Podman service
    18  type SystemEngine struct {
    19  	ClientCxt context.Context
    20  }