2021-07-08 13:12:09 +02:00

19 lines
311 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var bisect_logCmd = &cobra.Command{
Use: "log",
Short: "show bisect log",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(bisect_logCmd).Standalone()
bisectCmd.AddCommand(bisect_logCmd)
}