mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
8 lines
364 B
Go
8 lines
364 B
Go
package config
|
|
|
|
// CliOnlyOptions are options that are in the application config in memory, but are only exposed via CLI switches (not from unmarshaling a config file)
|
|
type CliOnlyOptions struct {
|
|
ConfigPath string // -c. where the read config is on disk
|
|
Verbosity int // -v or -vv , controlling which UI (ETUI vs logging) and what the log level should be
|
|
}
|