client.go 314 B

12345678910111213
  1. package flags
  2. // ClientOptions are the options used to configure the client cli
  3. type ClientOptions struct {
  4. Common *CommonOptions
  5. ConfigDir string
  6. Version bool
  7. }
  8. // NewClientOptions returns a new ClientOptions
  9. func NewClientOptions() *ClientOptions {
  10. return &ClientOptions{Common: NewCommonOptions()}
  11. }