You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
897 B
27 lines
897 B
2 months ago
|
module chat-room
|
||
|
|
||
|
go 1.16
|
||
|
|
||
|
require (
|
||
|
github.com/Shopify/sarama v1.30.0
|
||
|
github.com/gin-gonic/gin v1.7.4
|
||
|
github.com/go-playground/validator/v10 v10.9.0 // indirect
|
||
|
github.com/gogo/protobuf v1.3.2
|
||
|
github.com/google/uuid v1.3.0
|
||
|
github.com/gorilla/websocket v1.4.2
|
||
|
github.com/json-iterator/go v1.1.12 // indirect
|
||
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
||
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
||
|
github.com/natefinch/lumberjack v2.0.0+incompatible
|
||
|
github.com/spf13/viper v1.9.0
|
||
|
github.com/ugorji/go v1.2.6 // indirect
|
||
|
github.com/wxnacy/wgo v1.0.4
|
||
|
go.uber.org/zap v1.19.1
|
||
|
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
|
||
|
golang.org/x/sys v0.0.0-20211106132015-ebca88c72f68 // indirect
|
||
|
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
|
||
|
gorm.io/driver/mysql v1.1.3
|
||
|
gorm.io/gorm v1.22.2
|
||
|
gorm.io/plugin/soft_delete v1.0.4
|
||
|
)
|