common provides helpful DRY logic common to most Go services.
Run go get -u github.com/foresthoffman/common
If you're using go mod, run go mod vendor afterwards.
Import this package by including github.com/foresthoffman/common in your import block.
e.g.
package main
import(
...
"github.com/foresthoffman/common"
)Run go test -v -count=1 ./... in the project root directory. Use the -count=1 to force the tests to run un-cached.
That's all, enjoy!