diff --git a/util/errors.go b/util/errors.go deleted file mode 100644 index d134c84..0000000 --- a/util/errors.go +++ /dev/null @@ -1,12 +0,0 @@ -package util - -import ( - "github.com/sirupsen/logrus" -) - -// CheckError checks if an error occurred (it's not nil) -func CheckError(err error) { - if err != nil { - logrus.Fatal(err.Error()) - } -}