api/types: remove deprecated service-types
These types were deprecated in v25.0, and moved to api/types/swarm; This patch removes the aliases for; - api/types.ServiceUpdateResponse (deprecated in5b3e6555a3
) - api/types.ServiceCreateResponse (deprecated inec69501e94
) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
49637d0206
commit
4b09bc2145
1 changed files with 0 additions and 12 deletions
|
@ -3,20 +3,8 @@ package types
|
|||
import (
|
||||
"github.com/docker/docker/api/types/container"
|
||||
"github.com/docker/docker/api/types/image"
|
||||
"github.com/docker/docker/api/types/swarm"
|
||||
)
|
||||
|
||||
// ServiceCreateResponse contains the information returned to a client
|
||||
// on the creation of a new service.
|
||||
//
|
||||
// Deprecated: use [swarm.ServiceCreateResponse].
|
||||
type ServiceCreateResponse = swarm.ServiceCreateResponse
|
||||
|
||||
// ServiceUpdateResponse service update response.
|
||||
//
|
||||
// Deprecated: use [swarm.ServiceUpdateResponse].
|
||||
type ServiceUpdateResponse = swarm.ServiceUpdateResponse
|
||||
|
||||
// ContainerStartOptions holds parameters to start containers.
|
||||
//
|
||||
// Deprecated: use [container.StartOptions].
|
||||
|
|
Loading…
Reference in a new issue