harvest is a Go client library for accessing the Harvest API.
import "github.com/PeterVerschuure/harvest"
Construct a new Harvest client, then use the client to access the Harvest API.
apiClient := harvest.NewAPIClientWithBasicAuth(
"YOUR_USERNAME", "YOUR_PASSWORD", "YOUR_SUBDOMAIN")
clients := apiClient.Client.List()
client := apiClient.Client.Find(123123)
people := apiClient.People.List()
person := apiClient.People.Find(123123)
This library is distributed under the MIT-style license found in the LICENSE file.