package ocrmypdf type CLIOptions struct { Custom []string // Custom command line options go here. } // Args returns a list of CLI arguments that should be passed to the executable. func (c *CLIOptions) Args() (result []string) { result = append(result, c.Custom...) return }