Files
go-fiber-template/helpers/errors.go

8 lines
83 B
Go
Raw Permalink Normal View History

2024-01-10 21:20:45 +01:00
package helpers
func PanicIfError(err error) {
if err != nil {
panic(err)
}
}