9 lines
124 B
Go
9 lines
124 B
Go
|
package x
|
||
|
|
||
|
// Panic if error. Just fucking add exceptions, please.
|
||
|
func Pie(err error) {
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
}
|