|
||
---|---|---|
LICENSE | ||
README.md | ||
csvutils.go | ||
go.mod | ||
go.sum |
README.md
csvutils
CSV utility library for Go.
Installation
-
Run
go get git.mirkodi.eu/mirk0dex/csvutils
in your terminal emulator of choice, inside the directory your Go source code is; -
add the following to your imports:
csvutils "git.mirkodi.eu/mirk0dex/csvutils"
.
So, for instance, if the top of your source file looked like this:
import ( "fmt" )
it would now look like this:
import ( "fmt" csvutils "git.mirkodi.eu/mirk0dex/csvutils" )
.