A #golang package to access the Harvest API.
The Go Harvest API has been tested compatible with Go 1.8 on up. Its only dependency is
the github.com/pkg/errors
package. It otherwise relies only on the Go standard library.
go get github.com/adlio/harvest
All interaction starts with a harvest.API
. Create one with your account ID and token:
client := harvest.NewTokenAPI("ACCOUNTID", "TOKEN")