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