package util import ( "fmt" "os" ) func Check(e error, msg string) { if e != nil { fmt.Println(msg) fmt.Println(e) os.Exit(1) } }