Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/latitudesh/latitudesh-go
- Owner: latitudesh
- License: other
- Created: 2022-08-30T07:29:55.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-21T17:24:11.000Z (3 months ago)
- Last Synced: 2024-08-21T19:37:01.456Z (3 months ago)
- Language: Go
- Homepage: https://docs.latitude.sh/reference
- Size: 209 KB
- Stars: 3
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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 mainimport (
latitude "github.com/latitudesh/latitudesh-go"
)func main() {
client := latitude.NewClientWithAuth("Latitude.sh", apiToken, nil)
}
```