This commit is contained in:
henry
2021-11-02 09:43:19 +08:00
parent 570bb3c772
commit 4734344985
78 changed files with 4798 additions and 0 deletions

13
utils/catch.go Normal file
View File

@ -0,0 +1,13 @@
package utils
import "fmt"
func TryCatch(f func()) {
defer func() {
if err := recover(); err != nil {
err = fmt.Errorf("internal error: %v", err)
fmt.Printf("TryCatch Error%v\n", err)
}
}()
f()
}