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

20 lines
362 B
Go

package cmd
import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)
var p4Cmd = &cobra.Command{
Use: "p4",
Short: "Import from and submit to Perforce repositories",
Run: func(cmd *cobra.Command, args []string) {},
GroupID: groups[group_interaction].ID,
}
func init() {
carapace.Gen(p4Cmd).Standalone()
rootCmd.AddCommand(p4Cmd)
}