https://github.com/epicstep/go-vimeworld
https://github.com/epicstep/go-vimeworld
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/epicstep/go-vimeworld
- Owner: EpicStep
- License: mit
- Created: 2022-06-25T00:24:00.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-19T19:59:59.000Z (about 3 years ago)
- Last Synced: 2025-01-23T21:31:38.670Z (over 1 year ago)
- Language: Go
- Size: 25.4 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
go-vimeworld is a client for VimeWorld written in go.
[](https://pkg.go.dev/github.com/EpicStep/go-vimeworld/vimeworld)
[](https://github.com/EpicStep/go-vimeworld/actions/workflows/tests.yml)
[](https://github.com/EpicStep/go-vimeworld/actions/workflows/ci.yml)
[](https://codecov.io/gh/EpicStep/go-vimeworld)
[](https://goreportcard.com/report/github.com/EpicStep/go-vimeworld)
----
## Installation
```bash
go get github.com/EpicStep/go-vimeworld
```
## Example
```go
package main
import (
"context"
"fmt"
"github.com/EpicStep/go-vimeworld/vimeworld"
)
func main() {
c, err := vimeworld.NewClient(vimeworld.Options{})
if err != nil {
panic(err)
}
user, err := c.GetUsersByNames(context.Background(), "EpicStep")
if err != nil {
panic(err)
}
if len(user) == 0 {
panic("user not found")
}
fmt.Println(user[0])
}
```
## License
MIT