blob: 6a82eb52a57c843fb39dd521ddf4c45e6113b795 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package cli
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
}
|