/garoon

Cybozu Garoon REST API Client for Go

Primary LanguageGoCreative Commons Zero v1.0 UniversalCC0-1.0

Cybozu Garoon REST API client for Go CircleCI

Supported most of Garoon REST API excluding notification/items(POST)

import "github.com/otoyo/garoon"

Example

package main

import (
        "fmt"

        "github.com/otoyo/garoon"
)

func main() {
        c, err := garoon.NewClient("subdomain of .cybozu.com", "user", "password")
        if err != nil {
                fmt.Printf("%s\n", err)
                return
        }

        ev, err := c.FindEvent(123)
        if err != nil {
                fmt.Printf("%s\n", err)
                return
        }

        fmt.Printf("%#v\n", ev)
}

Documentation

See wiki

Contribution

Contributions are welcome ;)