mirror of
https://github.com/kubescape/kubescape.git
synced 2026-03-05 03:00:25 +00:00
18 lines
269 B
Go
18 lines
269 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var localCmd = &cobra.Command{
|
|
Use: "local",
|
|
Short: "Set configuration locally (for config.json)",
|
|
Long: ``,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
configCmd.AddCommand(localCmd)
|
|
}
|