Switch to discordgo upstream again (#1759)

* Switch to upstream discordgo again

* Fix discord api changes
This commit is contained in:
Wim
2022-03-12 17:06:39 +01:00
committed by GitHub
parent 9c203327c0
commit e4c0ca0f48
43 changed files with 5151 additions and 2363 deletions

17
vendor/github.com/bwmarrin/discordgo/.travis.yml generated vendored Normal file
View File

@@ -0,0 +1,17 @@
language: go
go:
- 1.13.x
- 1.14.x
- 1.15.x
- 1.16.x
env:
- GO111MODULE=on
install:
- go get github.com/bwmarrin/discordgo
- go get -v .
- go get -v golang.org/x/lint/golint
script:
- diff <(gofmt -d .) <(echo -n)
- go vet -x ./...
- golint -set_exit_status ./...
- go test -v -race ./...