blasphem/internal/common/common.go

32 lines
486 B
Go
Raw Normal View History

2022-09-25 11:42:36 -04:00
package common
import (
"github.com/spf13/cobra"
)
const (
AppName = "blasphem"
)
type cmdOptions interface {
Options(*cobra.Command, []string) error
Execute() error
}
func RunE(c cmdOptions) func(cmd *cobra.Command, args []string) error {
return func(cmd *cobra.Command, args []string) error {
err := c.Options(cmd, args)
if err != nil {
cmd.SilenceUsage = true
return err
}
err = c.Execute()
if err != nil {
cmd.SilenceUsage = true
}
return err
}
}