gogcli/internal/cmd/flags_output.go
2026-01-08 12:08:42 +01:00

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)"`
}