mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 00:37:27 +00:00
14 lines
201 B
Go
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)
|
|
}
|