2023-04-12 09:09:14 +02:00

20 lines
356 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var reflogCmd = &cobra.Command{
Use: "reflog",
Short: "Manage reflog information",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_manipulator].ID,
}
func init() {
carapace.Gen(reflogCmd).Standalone()
rootCmd.AddCommand(reflogCmd)
}