grype/cmd/db.go
2020-05-26 13:31:50 -04:00

14 lines
184 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
var dbCmd = &cobra.Command{
Use: "db",
Short: "vulnerability database operations",
}
func init() {
rootCmd.AddCommand(dbCmd)
}