14 lines
409 B
Go
14 lines
409 B
Go
package cmd
|
|
|
|
type OutputPathFlag struct {
|
|
Path string `name:"out" aliases:"output" help:"Output file path (default: gogcli config dir)"`
|
|
}
|
|
|
|
type OutputPathRequiredFlag struct {
|
|
Path string `name:"out" aliases:"output" help:"Output file path (required)"`
|
|
}
|
|
|
|
type OutputDirFlag struct {
|
|
Dir string `name:"out-dir" aliases:"output-dir" help:"Directory to write attachments to (default: current directory)"`
|
|
}
|