-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
28 lines (25 loc) · 920 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module github.com/dnovikoff/mahjong-api
go 1.19
require (
github.com/dnovikoff/tempai-core v0.0.0-20201102152242-80e66cf333ab
github.com/golang/protobuf v1.5.2
github.com/mitchellh/mapstructure v1.5.0
github.com/stretchr/testify v1.8.2
go.uber.org/multierr v1.9.0
go.uber.org/zap v1.24.0
google.golang.org/grpc v1.53.0
google.golang.org/protobuf v1.28.1
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect
github.com/facebookgo/stackerr v0.0.0-20150612192056-c2fcf88613f4 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
google.golang.org/genproto v0.0.0-20230301171018-9ab4bdc49ad5 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)