63 lines
2.4 KiB
Modula-2
63 lines
2.4 KiB
Modula-2
|
module dndmusicbot
|
||
|
|
||
|
go 1.19
|
||
|
|
||
|
require (
|
||
|
github.com/bwmarrin/discordgo v0.26.1
|
||
|
github.com/dpup/gohubbub v0.0.0-20140517235056-2dc6969d22d8
|
||
|
github.com/faiface/beep v1.1.0
|
||
|
github.com/google/uuid v1.3.0
|
||
|
github.com/gorilla/websocket v1.5.0
|
||
|
github.com/grafov/bcast v0.0.0-20190217190352-1447f067e08d
|
||
|
github.com/jackc/pgx/v5 v5.1.0
|
||
|
github.com/julienschmidt/httprouter v1.3.0
|
||
|
github.com/kataras/go-events v0.0.3
|
||
|
github.com/pkg/errors v0.9.1
|
||
|
github.com/r3labs/sse/v2 v2.8.2
|
||
|
github.com/spf13/viper v1.14.0
|
||
|
github.com/tidwall/gjson v1.14.3
|
||
|
google.golang.org/api v0.103.0
|
||
|
layeh.com/gopus v0.0.0-20210501142526-1ee02d434e32
|
||
|
)
|
||
|
|
||
|
require (
|
||
|
cloud.google.com/go/compute v1.12.1 // indirect
|
||
|
cloud.google.com/go/compute/metadata v0.2.1 // indirect
|
||
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
||
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
||
|
github.com/golang/protobuf v1.5.2 // indirect
|
||
|
github.com/googleapis/enterprise-certificate-proxy v0.2.0 // indirect
|
||
|
github.com/googleapis/gax-go/v2 v2.7.0 // indirect
|
||
|
github.com/hajimehoshi/go-mp3 v0.3.0 // indirect
|
||
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
||
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
||
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
||
|
github.com/magiconair/properties v1.8.6 // indirect
|
||
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
||
|
github.com/pelletier/go-toml v1.9.5 // indirect
|
||
|
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
|
||
|
github.com/spf13/afero v1.9.2 // indirect
|
||
|
github.com/spf13/cast v1.5.0 // indirect
|
||
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
||
|
github.com/spf13/pflag v1.0.5 // indirect
|
||
|
github.com/subosito/gotenv v1.4.1 // indirect
|
||
|
github.com/tidwall/match v1.1.1 // indirect
|
||
|
github.com/tidwall/pretty v1.2.1 // indirect
|
||
|
go.opencensus.io v0.24.0 // indirect
|
||
|
golang.org/x/crypto v0.2.0 // indirect
|
||
|
golang.org/x/net v0.2.0 // indirect
|
||
|
golang.org/x/oauth2 v0.0.0-20221014153046-6fdb5e3db783 // indirect
|
||
|
golang.org/x/sys v0.2.0 // indirect
|
||
|
golang.org/x/text v0.4.0 // indirect
|
||
|
golang.org/x/time v0.2.0 // indirect
|
||
|
google.golang.org/appengine v1.6.7 // indirect
|
||
|
google.golang.org/genproto v0.0.0-20221027153422-115e99e71e1c // indirect
|
||
|
google.golang.org/grpc v1.50.1 // indirect
|
||
|
google.golang.org/protobuf v1.28.1 // indirect
|
||
|
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
|
||
|
gopkg.in/fatih/set.v0 v0.2.1 // indirect
|
||
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
||
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
||
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||
|
)
|