This commit is contained in:
2021-09-29 21:00:49 -03:00
commit fdb5553bd7
20 changed files with 1584 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package errmgr
import "log"
func Report(err error) bool {
if err != nil {
log.Printf(err.Error())
return true
}
return false
}