Skip to content

Commit

Permalink
Created the reconcilation file
Browse files Browse the repository at this point in the history
  • Loading branch information
Abiji-2020 committed Sep 26, 2024
1 parent 7edac80 commit 08ccf42
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions cyctl/cmd/reconcile.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
package cmd

import (
"github.com/spf13/cobra"
)

var (
reconcileExample = `# Reconcile the Module
cyctl reconcile <module name>`
)

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){},
}

0 comments on commit 08ccf42

Please sign in to comment.