From f0d4dfb962f0a44524f485692f8ea8e2fd15e64c Mon Sep 17 00:00:00 2001 From: Miguel de la Cruz Date: Wed, 16 Sep 2020 18:34:36 +0200 Subject: [PATCH] Mark sync command as not implemented yet --- cmd/sync.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cmd/sync.go b/cmd/sync.go index 4196357..df56363 100644 --- a/cmd/sync.go +++ b/cmd/sync.go @@ -1,6 +1,8 @@ package cmd import ( + "fmt" + "github.com/spf13/cobra" ) @@ -20,4 +22,6 @@ func SyncCmd() *cobra.Command { return cmd } -func syncCmdF(_ *cobra.Command, _ []string) {} +func syncCmdF(cmd *cobra.Command, _ []string) { + ErrorAndExit(cmd, fmt.Errorf("Not implemented yet")) +}