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