Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aidenwallis/go-twitch-client
A low level, simple wrapper around the Twitch API written in Go.
https://github.com/aidenwallis/go-twitch-client
Last synced: about 6 hours ago
JSON representation
A low level, simple wrapper around the Twitch API written in Go.
- Host: GitHub
- URL: https://github.com/aidenwallis/go-twitch-client
- Owner: aidenwallis
- License: mit
- Created: 2022-09-18T01:34:22.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-21T04:39:20.000Z (over 2 years ago)
- Last Synced: 2024-06-19T18:08:36.015Z (8 months ago)
- Language: Go
- Size: 40 KB
- Stars: 8
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-twitch-client
[![Go Reference](https://pkg.go.dev/badge/github.com/aidenwallis/go-twitch-client.svg)](https://pkg.go.dev/github.com/aidenwallis/go-twitch-client) [![codecov](https://codecov.io/gh/aidenwallis/go-twitch-client/branch/main/graph/badge.svg?token=s6fH5g5GG0)](https://codecov.io/gh/aidenwallis/go-twitch-client)
A simple, low level wrapper for the [Twitch API](https://dev.twitch.tv). The package deliberately does not make considerations around rate-limiting, token management, or other abstracted behaviour. It aims to be a very simple, thin layer between you and the Twitch API.
For that reason, you should use this package behind any rate-limiting logic, or authorization logic you build into your apps.
Each API is split into it's own package, documentation relevant to Helix lives in the [helix](helix/README.md) directory.
This package is built using Generics, and thus requires Go 1.18 or later.