This is not original Todoist library for Go.
This library supports most if not all of the developer.todoist.com/rest/v2
REST
calls.
There is currently no major version released.
$ go get -u github.com/volyanyk/todoist
package main
import (
"fmt"
"github.com/volyanyk/todoist"
)
func main() {
api := todoist.New("TOKEN")
projects, err := api.GetProjects()
if err != nil {
return
}
fmt.Printf("%v", projects)
}
You are more than welcome to contribute to this project. Fork and make a Pull Request, or create an Issue if you see any problem.
Before making any Pull Request please run the following:
make pr-prep
This will check/update code formatting, linting and then run all tests
BSD 2 Clause license