Last active 1747407160

Revision 4ce29f2ff5ffae29c6a679b64c172fd01b76ac69

main.go Raw
1// favourite golang snippet for error handing right now
2
3func must(action string, err error) {
4 if err != nil {
5 panic("-> Failed to " + action + ": " + err.Error())
6 }
7}