podman/pkg/domain/infra/tunnel/runtime.go

21 lines
432 B
Go

package tunnel
import (
"context"
)
// Image-related runtime using an ssh-tunnel to utilize Podman service
type ImageEngine struct {
ClientCxt context.Context
}
// Container-related runtime using an ssh-tunnel to utilize Podman service
type ContainerEngine struct {
ClientCxt context.Context
}
// Container-related runtime using an ssh-tunnel to utilize Podman service
type SystemEngine struct {
ClientCxt context.Context
}