mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00

add volume commands: create, inspect, ls, prune, and rm Signed-off-by: Brent Baude <bbaude@redhat.com>
16 lines
300 B
Go
16 lines
300 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
|
|
}
|