github.com/hanks177/podman/v4@v4.1.3-0.20220613032544-16d90015bc83/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  	ClientCtx context.Context
    10  }
    11  
    12  // Container-related runtime using an ssh-tunnel to utilize Podman service
    13  type ContainerEngine struct {
    14  	ClientCtx context.Context
    15  }
    16  
    17  // Container-related runtime using an ssh-tunnel to utilize Podman service
    18  type SystemEngine struct {
    19  	ClientCtx context.Context
    20  }