cmd/azqr/commands/ci.go (16 lines of code) (raw):

// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. package commands import ( "github.com/spf13/cobra" ) func init() { scanCmd.AddCommand(ciCmd) } var ciCmd = &cobra.Command{ Use: "ci", Short: "Scan Azure Container Instances", Long: "Scan Azure Container Instances", Args: cobra.NoArgs, Run: func(cmd *cobra.Command, args []string) { scan(cmd, []string{"ci"}) }, }