12 lines
130 B
Go
12 lines
130 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func printErrAndExit(errorStr string) {
|
|
fmt.Printf("ERROR: %s\n", errorStr)
|
|
os.Exit(1)
|
|
}
|