client.go 234 B

123456789101112
  1. package flags
  2. import flag "github.com/docker/docker/pkg/mflag"
  3. // ClientFlags represents flags for the docker client.
  4. type ClientFlags struct {
  5. FlagSet *flag.FlagSet
  6. Common *CommonFlags
  7. PostParse func()
  8. ConfigDir string
  9. }