Initializer
init(name:short:help:)
Creates a new
Option with the optionType set to .value.init(name: String, short: Character? = nil, help: String = "")
Parameters
shortThe short-hand for the flag that can be passed in to the command call.
helpThe option’s help text when
--helpis passed in.
Discussion
@Option(name: "verbose", short: "v", help: "Output debug logs")
var verbose: Bool?