campaigner/cmd/utils.go

13 lines
144 B
Go
Raw Normal View History

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