mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0452ff5a4d
Fix the daemon proxy for cobra commands. Signed-off-by: Daniel Nephin <dnephin@docker.com>
13 lines
314 B
Go
13 lines
314 B
Go
package flags
|
|
|
|
// ClientOptions are the options used to configure the client cli
|
|
type ClientOptions struct {
|
|
Common *CommonOptions
|
|
ConfigDir string
|
|
Version bool
|
|
}
|
|
|
|
// NewClientOptions returns a new ClientOptions
|
|
func NewClientOptions() *ClientOptions {
|
|
return &ClientOptions{Common: NewCommonOptions()}
|
|
}
|