Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Upstream-commit: a3fe7d62b8
Component: cli
13 lines
298 B
Go
13 lines
298 B
Go
package flags
|
|
|
|
// ClientOptions are the options used to configure the client cli
|
|
type ClientOptions struct {
|
|
Common *CommonOptions
|
|
ConfigDir string
|
|
}
|
|
|
|
// NewClientOptions returns a new ClientOptions
|
|
func NewClientOptions() *ClientOptions {
|
|
return &ClientOptions{Common: NewCommonOptions()}
|
|
}
|