This commit is contained in:
2018-11-04 15:58:15 +01:00
commit f956bcee28
1178 changed files with 584552 additions and 0 deletions

8
vendor/github.com/anacrolix/missinggo/x/panic.go generated vendored Normal file
View File

@@ -0,0 +1,8 @@
package x
// Panic if error. Just fucking add exceptions, please.
func Pie(err error) {
if err != nil {
panic(err)
}
}