1
0
mirror of synced 2026-03-26 03:46:55 +00:00
Files
flux2/cmd/tk/sync.go
stefanprodan 21e0d38152 Implement sync command
- sync git sources
- sync kustomizations along with their sources
2020-04-29 08:50:27 +03:00

15 lines
178 B
Go

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