diff --git a/cmd/root.go b/cmd/root.go index 597eb50..d4773b1 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -20,6 +20,7 @@ func RootCmd() *cobra.Command { StandaloneCmd(), TokenCmd(), PublishCmd(), + SyncCmd(), ) return cmd diff --git a/cmd/sync.go b/cmd/sync.go new file mode 100644 index 0000000..ccd8196 --- /dev/null +++ b/cmd/sync.go @@ -0,0 +1,18 @@ +package cmd + +import ( + "github.com/spf13/cobra" +) + +func SyncCmd() *cobra.Command { + cmd := &cobra.Command{ + Use: "sync", + Short: "Synchronizes the status of the tickets with remote providers", + Args: cobra.NoArgs, + Run: syncCmdF, + } + + return cmd +} + +func syncCmdF(_ *cobra.Command, _ []string) {}