diff --git a/cyctl/cmd/reconcile.go b/cyctl/cmd/reconcile.go new file mode 100644 index 00000000..609630c9 --- /dev/null +++ b/cyctl/cmd/reconcile.go @@ -0,0 +1,18 @@ +package cmd + +import ( + "github.com/spf13/cobra" +) + +var ( + reconcileExample = `# Reconcile the Module + cyctl reconcile ` +) + +var reconcileCMD = &cobra.Command{ + Use: "reconcile", + Short: "Will reconcile the Module and update the current TimeStamp", + Long: "Will reconcile the Module and update the current TimeStamp", + Example: reconcileExample, + //Run: func(cmd *cobra.Command, args []string){}, +}