package cmd import "github.com/spf13/cobra" var reviewCmd = &cobra.Command{ Use: "review [path]", Short: "Review the current repository or directory", Run: func(cmd *cobra.Command, args []string) { // TODO: implement }, }