fluxcd-flux2/cmd/tk/delete_source.go
stefanprodan 6d590fe4d2 Implement delete for git sources
- add delete source git command
- add delete source git e2e test
2020-04-29 23:40:03 +03:00

14 lines
201 B
Go

package main
import (
"github.com/spf13/cobra"
)
var deleteSourceCmd = &cobra.Command{
Use: "source",
Short: "Delete sources commands",
}
func init() {
deleteCmd.AddCommand(deleteSourceCmd)
}