mirror of
https://github.com/mgerb/go-discord-bot
synced 2026-01-09 08:32:48 +00:00
48 lines
1.9 KiB
Modula-2
48 lines
1.9 KiB
Modula-2
module github.com/mgerb/go-discord-bot/server
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/bwmarrin/discordgo v0.27.1
|
|
github.com/gin-gonic/gin v1.7.7
|
|
github.com/go-audio/audio v1.0.0
|
|
github.com/go-audio/wav v1.0.0
|
|
github.com/jinzhu/copier v0.3.5
|
|
github.com/jinzhu/gorm v1.9.16
|
|
github.com/kkdai/youtube/v2 v2.7.10
|
|
github.com/sirupsen/logrus v1.8.1
|
|
gopkg.in/dgrijalva/jwt-go.v3 v3.2.0
|
|
gopkg.in/hraban/opus.v2 v2.0.0-20211030232353-1a9beeaf0764
|
|
)
|
|
|
|
require (
|
|
github.com/bitly/go-simplejson v0.5.0 // indirect
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
|
|
github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect
|
|
github.com/dop251/goja v0.0.0-20220214123719-b09a6bfa842f // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-audio/riff v1.0.0 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.10.0 // indirect
|
|
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.11 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/rogpeppe/go-internal v1.8.1 // indirect
|
|
github.com/ugorji/go/codec v1.2.6 // indirect
|
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
|
|
golang.org/x/sys v0.0.0-20211214234402-4825e8c3871d // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|