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
- Host: GitHub
- URL: https://github.com/Miro-Ecosystem/go-miro
- Owner: Miro-Ecosystem
- License: apache-2.0
- Created: 2020-08-25T08:45:56.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-01-31T20:04:52.000Z (over 2 years ago)
- Last Synced: 2024-08-04T22:14:48.354Z (almost 2 years ago)
- Topics: go, golang, miro, miro-api
- Language: Go
- Homepage:
- Size: 82 KB
- Stars: 5
- Watchers: 1
- Forks: 7
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Miro API in Go

[](https://codecov.io/gh/Miro-Ecosystem/go-miro)
[](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.