This commit is contained in:
2021-10-29 10:09:55 -05:00
parent d105e88992
commit 2116778276
10 changed files with 47 additions and 44 deletions

9
runner/util.go Normal file
View File

@@ -0,0 +1,9 @@
package runner
import "log"
func checkErr(err error) {
if err != nil {
log.Fatal(err)
}
}