github.com/anchore/syft@v1.4.2-0.20240516191711-1bec1fc5d397/cmd/syft/internal/commands/cataloger.go (about) 1 package commands 2 3 import ( 4 "github.com/spf13/cobra" 5 6 "github.com/anchore/clio" 7 ) 8 9 func Cataloger(app clio.Application) *cobra.Command { 10 cmd := &cobra.Command{ 11 Use: "cataloger", 12 Short: "Show available catalogers and configuration", 13 } 14 15 cmd.AddCommand( 16 CatalogerList(app), 17 ) 18 19 return cmd 20 }