latitudesh-go is a Go client library for accessing the Latitude.sh API.
You can view the API docs here: https://docs.latitude.sh/reference
go get github.com/latitudesh/[email protected]
where X.Y.Z is the version you need.
package main
import (
latitude "github.com/latitudesh/latitudesh-go"
)
func main() {
client := latitude.NewClientWithAuth("Latitude.sh", apiToken, nil)
}