8 lines
83 B
Go
8 lines
83 B
Go
package helpers
|
|
|
|
func PanicIfError(err error) {
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|