1
0
mirror of synced 2026-03-17 08:36:56 +00:00
Files
flux2/cmd/tk/get.go
stefanprodan 2225b2a6a9 Implement get commands
- add get sources git command
- add get kustomizations command
2020-04-29 13:52:15 +03:00

15 lines
167 B
Go

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