github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/cli/flags/client.go (about) 1 package flags 2 3 // ClientOptions are the options used to configure the client cli 4 type ClientOptions struct { 5 Common *CommonOptions 6 ConfigDir string 7 Version bool 8 } 9 10 // NewClientOptions returns a new ClientOptions 11 func NewClientOptions() *ClientOptions { 12 return &ClientOptions{Common: NewCommonOptions()} 13 }