mirror of
https://github.com/anchore/grype
synced 2024-11-10 14:44:12 +00:00
14 lines
184 B
Go
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)
|
|
}
|