mirror of
https://github.com/containers/podman.git
synced 2025-11-29 17:48:05 +08:00
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>
31 lines
1.1 KiB
Go
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
|
|
)
|