mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
12 lines
222 B
Go
12 lines
222 B
Go
package options
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
type Interface interface {
|
|
// AddFlags adds this options' flags to the cobra command.
|
|
AddFlags(cmd *cobra.Command, v *viper.Viper) error
|
|
}
|