37 lines
1.4 KiB
Modula-2
37 lines
1.4 KiB
Modula-2
module twitch-clone
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/bwmarrin/snowflake v0.3.0
|
|
github.com/go-playground/validator/v10 v10.11.1
|
|
github.com/gocql/gocql v1.2.1
|
|
github.com/joho/godotenv v1.4.0
|
|
github.com/labstack/echo/v4 v4.9.1
|
|
github.com/olahol/melody v1.1.1
|
|
github.com/scylladb/gocqlx/v2 v2.7.0
|
|
)
|
|
|
|
require (
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/gorilla/websocket v1.5.0 // indirect
|
|
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect
|
|
github.com/labstack/gommon v0.4.0 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/mattn/go-colorable v0.1.11 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/scylladb/go-reflectx v1.0.1 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.1 // indirect
|
|
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3 // indirect
|
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
|
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
)
|