fluxcd-flux2/cmd/tk/create_source.go
stefanprodan c6793f6eaf Refactor create command
- move GitRepository operations to create source git
- update examples and e2e tests
2020-04-28 23:51:23 +03:00

14 lines
200 B
Go

package main
import (
"github.com/spf13/cobra"
)
var createSourceCmd = &cobra.Command{
Use: "source",
Short: "Create source commands",
}
func init() {
createCmd.AddCommand(createSourceCmd)
}