fluxcd-flux2/cmd/tk/get.go
stefanprodan 2225b2a6a9 Implement get commands
- add get sources git command
- add get kustomizations command
2020-04-29 13:52:15 +03:00

14 lines
167 B
Go

package main
import (
"github.com/spf13/cobra"
)
var getCmd = &cobra.Command{
Use: "get",
Short: "Get commands",
}
func init() {
rootCmd.AddCommand(getCmd)
}