Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/latitudesh/latitudesh-go

Go library for the Latitude.sh API
https://github.com/latitudesh/latitudesh-go

Last synced: about 11 hours ago
JSON representation

Go library for the Latitude.sh API

Awesome Lists containing this project

README

        

# latitudesh-go
[![GoDoc](https://godoc.org/github.com/latitudesh/latitudesh-go?status.svg)](https://godoc.org/github.com/latitudesh/latitudesh-go)

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
```sh
go get github.com/latitudesh/[email protected]
```

where X.Y.Z is the [version](https://github.com/latitudesh/latitudesh-go/releases) you need.

## Usage

```go
package main

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

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