Mark sync command as not implemented yet

This commit is contained in:
Miguel de la Cruz 2020-09-16 18:34:36 +02:00
parent a40693b493
commit f0d4dfb962

View file

@ -1,6 +1,8 @@
package cmd package cmd
import ( import (
"fmt"
"github.com/spf13/cobra" "github.com/spf13/cobra"
) )
@ -20,4 +22,6 @@ func SyncCmd() *cobra.Command {
return cmd return cmd
} }
func syncCmdF(_ *cobra.Command, _ []string) {} func syncCmdF(cmd *cobra.Command, _ []string) {
ErrorAndExit(cmd, fmt.Errorf("Not implemented yet"))
}