Skip to content

latitudesh/latitudesh-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

latitudesh-go

GoDoc

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

Install

go get github.com/latitudesh/[email protected]

where X.Y.Z is the version you need.

Usage

package main

import (
    latitude "github.com/latitudesh/latitudesh-go"
)

func main() {
    client := latitude.NewClientWithAuth("Latitude.sh", apiToken, nil)
}