mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-15 13:19:32 +00:00
20 lines
432 B
Go
20 lines
432 B
Go
package tunnel
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
// Image-related runtime using an ssh-tunnel to utilize Podman service
|
|
type ImageEngine struct {
|
|
ClientCtx context.Context
|
|
}
|
|
|
|
// Container-related runtime using an ssh-tunnel to utilize Podman service
|
|
type ContainerEngine struct {
|
|
ClientCtx context.Context
|
|
}
|
|
|
|
// Container-related runtime using an ssh-tunnel to utilize Podman service
|
|
type SystemEngine struct {
|
|
ClientCtx context.Context
|
|
}
|