package utils // PanicOnError will panic if err goven is not nil func PanicOnError(err error) { if err != nil { panic(err) } }