-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
go.mod
21 lines (19 loc) · 836 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module github.com/tannergabriel/learning-go/advanced-programs/WebsocketsChat
go 1.13
require (
github.com/bytedance/sonic v1.8.2 // indirect
github.com/elazarl/go-bindata-assetfs v1.0.0 // indirect
github.com/gin-contrib/static v0.0.1
github.com/gin-gonic/gin v1.9.0
github.com/golang/protobuf v1.5.2 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/ugorji/go/codec v1.2.10 // indirect
golang.org/x/arch v0.2.0 // indirect
golang.org/x/crypto v0.6.0 // indirect
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/go-playground/validator.v9 v9.29.1 // indirect
gopkg.in/olahol/melody.v1 v1.0.0-20170518105555-d52139073376
gopkg.in/yaml.v2 v2.4.0 // indirect
)