8 lines
70 B
Go
8 lines
70 B
Go
package utils
|
|
|
|
func PanicIf(e error) {
|
|
if e != nil {
|
|
panic(e)
|
|
}
|
|
}
|