mirror of
https://github.com/docker/docs.git
synced 2026-04-02 09:18:57 +07:00
12 lines
161 B
Go
12 lines
161 B
Go
package state
|
|
|
|
import (
|
|
"github.com/samalba/dockerclient"
|
|
)
|
|
|
|
type RequestedState struct {
|
|
ID string
|
|
Name string
|
|
Config *dockerclient.ContainerConfig
|
|
}
|