campaigner/cmd/utils.go
2020-02-29 00:34:17 +01:00

12 lines
144 B
Go

package cmd
import (
"os"
"github.com/spf13/cobra"
)
func ErrorAndExit(cmd *cobra.Command, err error) {
cmd.PrintErrln(err)
os.Exit(1)
}