package internal import ( "fmt" "os" ) func ErrQuit(s string, args ...interface{}) { fmt.Fprintf(os.Stderr, s+"\n", args...) os.Exit(1) }