syft/cmd/syft/cli/options/options.go
2022-04-26 18:23:03 +00:00

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
}