mirror of
https://github.com/docker/docs.git
synced 2026-04-01 00:38:52 +07:00
11 lines
181 B
Go
11 lines
181 B
Go
package state
|
|
|
|
import "github.com/docker/swarm/cluster"
|
|
|
|
// RequestedState is exported
|
|
type RequestedState struct {
|
|
ID string
|
|
Name string
|
|
Config *cluster.ContainerConfig
|
|
}
|