fluxcd-flux2/cmd/tk/get_source.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
190 B
Go

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