Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dougefresh/toggl-workspace
https://github.com/dougefresh/toggl-workspace
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/dougefresh/toggl-workspace
- Owner: dougEfresh
- License: mit
- Created: 2016-05-26T23:26:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-15T17:49:12.000Z (almost 8 years ago)
- Last Synced: 2024-06-22T07:51:25.159Z (7 months ago)
- Language: Go
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Toggl Workspace
Toggl workspace is an interface for [toggl](https://github.com/toggl/toggl_api_docs) workspaces.
[![Build Status](https://travis-ci.org/dougEfresh/toggl-workspace.svg?branch=master)](https://travis-ci.org/dougEfresh/toggl-workspace)
[![Go Report Card](https://goreportcard.com/badge/github.com/dougEfresh/toggl-workspace)](https://goreportcard.com/report/github.com/dougEfresh/toggl-workspace)
[![GoDoc](https://godoc.org/github.com/dougEfresh/toggl-workspace?status.svg)](https://godoc.org/github.com/dougEfresh/toggl-workspace)
[![Coverage Status](https://coveralls.io/repos/github/dougEfresh/toggl-workspace/badge.svg?branch=master)](https://coveralls.io/github/dougEfresh/toggl-workspace?branch=master)
[![license](http://img.shields.io/badge/license-MIT-red.svg?style=flat)](https://raw.githubusercontent.com/dougEfresh/toggl-workspace/master/LICENSE)**Example:**
```sh
go get gopkg.in/dougEfresh/gtoggl.v8 gopkg.in/dougEfresh/toggl-workspace.v8
``````go
import "gopkg.in/dougEfresh/gtoggl.v8"
import "gopkg.in/dougEfresh/toggl-workspace.v8"func main() {
thc, err := gtoggl.NewClient("token")
...
tc, err := gworkspace.NewClient(thc)
...
workspace,err := tc.Get(1)
if err == nil {
panic(err)
}
}
```