├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── changelog-check.yml │ └── lint.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── automodqueue.go ├── bits.go ├── bits_test.go ├── client.go ├── cmd └── example │ ├── .gitignore │ └── main.go ├── connection.go ├── connection_test.go ├── connectionmanager.go ├── go.mod ├── go.sum ├── helpers_test.go ├── messages-in.go ├── messages-out.go ├── messages.go ├── moderation.go ├── moderation_test.go ├── points.go ├── subscribe.go ├── subscribe_test.go ├── tools.go ├── topic.go ├── topicmanager.go └── whispers.go /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/changelog-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/.github/workflows/changelog-check.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/README.md -------------------------------------------------------------------------------- /automodqueue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/automodqueue.go -------------------------------------------------------------------------------- /bits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/bits.go -------------------------------------------------------------------------------- /bits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/bits_test.go -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/client.go -------------------------------------------------------------------------------- /cmd/example/.gitignore: -------------------------------------------------------------------------------- 1 | /example 2 | -------------------------------------------------------------------------------- /cmd/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/cmd/example/main.go -------------------------------------------------------------------------------- /connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/connection.go -------------------------------------------------------------------------------- /connection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/connection_test.go -------------------------------------------------------------------------------- /connectionmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/connectionmanager.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/go.sum -------------------------------------------------------------------------------- /helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/helpers_test.go -------------------------------------------------------------------------------- /messages-in.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/messages-in.go -------------------------------------------------------------------------------- /messages-out.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/messages-out.go -------------------------------------------------------------------------------- /messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/messages.go -------------------------------------------------------------------------------- /moderation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/moderation.go -------------------------------------------------------------------------------- /moderation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/moderation_test.go -------------------------------------------------------------------------------- /points.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/points.go -------------------------------------------------------------------------------- /subscribe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/subscribe.go -------------------------------------------------------------------------------- /subscribe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/subscribe_test.go -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/tools.go -------------------------------------------------------------------------------- /topic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/topic.go -------------------------------------------------------------------------------- /topicmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/topicmanager.go -------------------------------------------------------------------------------- /whispers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pajlada/go-twitch-pubsub/HEAD/whispers.go --------------------------------------------------------------------------------