mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-18 22:37:52 +00:00
add system df, info, load, renumber, and migrate Refactor for specialized libpod engines add the ability to prune images, volumes, containers, and pods Signed-off-by: baude <bbaude@redhat.com>
14 lines
384 B
Go
14 lines
384 B
Go
package entities
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
type SystemEngine interface {
|
|
Renumber(ctx context.Context, flags *pflag.FlagSet, config *PodmanConfig) error
|
|
Migrate(ctx context.Context, flags *pflag.FlagSet, config *PodmanConfig, options SystemMigrateOptions) error
|
|
Reset(ctx context.Context, options SystemResetOptions) error
|
|
Shutdown(ctx context.Context)
|
|
}
|