An open API service indexing awesome lists of open source software.

https://github.com/Miro-Ecosystem/go-miro

Go written Miro API client
https://github.com/Miro-Ecosystem/go-miro

go golang miro miro-api

Last synced: about 1 year ago
JSON representation

Go written Miro API client

Awesome Lists containing this project

README

          

# Miro API in Go

![tests](https://github.com/Miro-Ecosystem/go-miro/workflows/tests/badge.svg)
[![codecov](https://codecov.io/gh/Miro-Ecosystem/go-miro/branch/master/graph/badge.svg)](https://codecov.io/gh/Miro-Ecosystem/go-miro)
[![Documentation](https://godoc.org/github.com/yangwenmai/how-to-add-badge-in-github-readme?status.svg)](https://pkg.go.dev/mod/github.com/Miro-Ecosystem/go-miro)

Go written [Miro](https://miro.com/app/dashboard/) API client.

*Note that Widget is not supported yet*

## Installation

Include this is your code as below:

```go
import "github.com/Miro-Ecosystem/go-miro/miro"
```

Using `go get`:

```console
$ go get github.com/Miro-Ecosystem/go-miro
```

## Usage

Using the client:

```go
client := miro.NewClient("access token")
```

API's are very simple and easy to understand.

```go
client.Board.Get("10")
```

## Copyright and License

Please see the LICENSE file for the included license information.
Copyright 2020 by Keisuke Yamashita.