From 2958b3124ecc09f4d3cf7169c9c7ed510463d62c Mon Sep 17 00:00:00 2001 From: dtookey Date: Fri, 2 Dec 2022 14:49:51 -0500 Subject: [PATCH] literally one line of function documentation... --- src/mercuryUtil/util.go | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mercuryUtil/util.go b/src/mercuryUtil/util.go index 13c9af3..da0fb74 100644 --- a/src/mercuryUtil/util.go +++ b/src/mercuryUtil/util.go @@ -36,6 +36,7 @@ func CopyFile(inPath string, outpath string) error { return nil } +// LoadCsv wrapper function for csvNewReader func LoadCsv(pathlike string) (*[][]string, error) { f, err := os.OpenFile(pathlike, os.O_RDONLY, 0755) if err != nil {