Move all flags into cli/flags Move usage help into cli/usage.go Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 33c9edaf6c5401fc1891713d1ad8d861e6cea51f Component: engine
13 lines
234 B
Go
13 lines
234 B
Go
package flags
|
|
|
|
import flag "github.com/docker/docker/pkg/mflag"
|
|
|
|
// ClientFlags represents flags for the docker client.
|
|
type ClientFlags struct {
|
|
FlagSet *flag.FlagSet
|
|
Common *CommonFlags
|
|
PostParse func()
|
|
|
|
ConfigDir string
|
|
}
|