pgterminate/base/utils.go
2018-06-10 08:50:01 +02:00

12 lines
157 B
Go

package base
import (
"log"
)
// Panic prints a non-nil error and terminates the program
func Panic(err error) {
if err != nil {
log.Fatalln(err)
}
}