spiegel_podman/pkg/domain/entities/system.go
Brent Baude 2cc3be7332
RUN-4539: Change podman module paths
The podman module paths are moving from github.com/containers/podman to
go.podman.io/podman.  This will help with future mobility.

Signed-off-by: Brent Baude <bbaude@redhat.com>
2026-04-22 14:02:25 -05:00

30 lines
1 KiB
Go

package entities
import (
"go.podman.io/podman/v6/pkg/domain/entities/types"
)
// ServiceOptions provides the input for starting an API and sidecar pprof services
type (
ServiceOptions = types.ServiceOptions
SystemPruneOptions = types.SystemPruneOptions
SystemPruneReport = types.SystemPruneReport
SystemMigrateOptions = types.SystemMigrateOptions
SystemCheckOptions = types.SystemCheckOptions
SystemCheckReport = types.SystemCheckReport
SystemDfOptions = types.SystemDfOptions
SystemDfReport = types.SystemDfReport
SystemDfImageReport = types.SystemDfImageReport
SystemDfContainerReport = types.SystemDfContainerReport
SystemDfVolumeReport = types.SystemDfVolumeReport
SystemVersionReport = types.SystemVersionReport
SystemUnshareOptions = types.SystemUnshareOptions
ComponentVersion = types.SystemComponentVersion
ListRegistriesReport = types.ListRegistriesReport
)
type (
AuthConfig = types.AuthConfig
AuthReport = types.AuthReport
LocksReport = types.LocksReport
)