summaryrefslogtreecommitdiff
path: root/pkg/domain/infra/tunnel/runtime.go
blob: c111f99e9460b96f0c3274992eca811fabefbe72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}