Files
podman/pkg/domain/entities/system.go
Paul Holzinger 5c1ed12d8d enable gofumpt formatter
Based on our discussion gofumpt won the vote so use that one via
golangci-lint.

https://github.com/containers/podman/discussions/27291

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-11-11 12:32:46 +01:00

31 lines
1.1 KiB
Go

package entities
import (
"github.com/containers/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
)