Awesome
Toggl API for golang
Throttle API for toggle
Installation
$ go get -u github.com/dougEfresh/gtoggl-api
$ go get -u github.com/dougEfresh/gtoggl
Quick Start
import "github.com/dougEfresh/gtoggl"
import "github.com/dougEfresh/gtoggl-api/gtproject"
func main() {
thc, err := gtoggl.NewClient("token")
...
tc, err := gtproject.NewClient(thc)
...
project,err := tc.Get(1)
if err == nil {
panic(err)
}
}
The gtoggl clients provides throttling
Usage
See gtoggl cli
Examples
See godoc for more examples
Prerequisites
go 1.x
Tests
$ go test -v ./...
Deployment
Contributing
All PRs are welcome
Authors
- Douglas Chimento - dougEfresh
License
This project is licensed under the Apache License - see the LICENSE file for details