github.com/olljanat/moby@v1.13.1/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  }