CLIOptions struct

CLIOptions contains options for creating a new command for the CLI.

Fields:

  • Use (string)
  • Short (string)
  • Long (string)

flag struct

Fields:

  • Name (string)
  • Shorthand (string)
  • Usage (string)

BoolFlag struct

Fields:

  • Value (bool)

StringFlag struct

Fields:

  • Value (string)

NewBoolFlag function

Parameters:

  • name string
  • shorthand string
  • usage string
  • value bool

Returns:

  • BoolFlag

References:

Show/Hide Function Body
{
	return BoolFlag{
		flag: flag{
			Name:      name,
			Shorthand: shorthand,
			Usage:     usage,
		},
		Value: value,
	}
}

NewStringFlag function

Parameters:

  • name string
  • shorthand string
  • usage string
  • value string

Returns:

  • StringFlag

References:

Show/Hide Function Body
{
	return StringFlag{
		flag: flag{
			Name:      name,
			Shorthand: shorthand,
			Usage:     usage,
		},
		Value: value,
	}
}