cmd/azqr/commands/adf.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(adfCmd)
}
var adfCmd = &cobra.Command{
Use: "adf",
Short: "Scan Azure Data Factory",
Long: "Scan Azure Data Factory",
Args: cobra.NoArgs,
Run: func(cmd *cobra.Command, args []string) {
scan(cmd, []string{"adf"})
},
}