Skip to content

Instantly share code, notes, and snippets.

@kate-osborn
kate-osborn / command.go
Last active January 30, 2024 22:46
Cobra command testing bug
package command
import (
"github.com/spf13/cobra"
)
func Create() *cobra.Command {
return &cobra.Command{
Use: "command",
RunE: func(cmd *cobra.Command, args []string) error {