mirror of https://github.com/docker/cli.git
14 lines
314 B
Go
14 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()}
|
|
}
|