mirror of
https://github.com/containers/podman.git
synced 2025-11-11 16:45:02 +08:00
Commit 668d517af9 moved a lot of type definitions and by that also
copied a bucnh of swagger:model comments, this caused swagger to create
a incorrect yaml that can no longer be parsed by redoc due
"Self-referencing circular pointer".
The yaml basically defined the type with a name and the pointed to the
same name definition again so it caused a infinitive recursion where
redoc just throws an error but the swagger style ignored the case so it
seemed like it worked but obviously the type information was not
working.
Fixes #22351
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
25 lines
954 B
Go
25 lines
954 B
Go
package entities
|
|
|
|
import (
|
|
"github.com/containers/podman/v5/pkg/domain/entities/types"
|
|
)
|
|
|
|
// ServiceOptions provides the input for starting an API and sidecar pprof services
|
|
type ServiceOptions = types.ServiceOptions
|
|
type SystemPruneOptions = types.SystemPruneOptions
|
|
type SystemPruneReport = types.SystemPruneReport
|
|
type SystemMigrateOptions = types.SystemMigrateOptions
|
|
type SystemDfOptions = types.SystemDfOptions
|
|
type SystemDfReport = types.SystemDfReport
|
|
type SystemDfImageReport = types.SystemDfImageReport
|
|
type SystemDfContainerReport = types.SystemDfContainerReport
|
|
type SystemDfVolumeReport = types.SystemDfVolumeReport
|
|
type SystemVersionReport = types.SystemVersionReport
|
|
type SystemUnshareOptions = types.SystemUnshareOptions
|
|
type ComponentVersion = types.SystemComponentVersion
|
|
type ListRegistriesReport = types.ListRegistriesReport
|
|
|
|
type AuthConfig = types.AuthConfig
|
|
type AuthReport = types.AuthReport
|
|
type LocksReport = types.LocksReport
|