-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgo.mod
More file actions
28 lines (22 loc) · 857 Bytes
/
go.mod
File metadata and controls
28 lines (22 loc) · 857 Bytes
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 go-laptop-booking
go 1.17
require google.golang.org/protobuf v1.27.1
require (
github.com/google/uuid v1.3.0
github.com/jinzhu/copier v0.3.4
github.com/stretchr/testify v1.7.0
google.golang.org/grpc v1.43.0
)
require github.com/golang-jwt/jwt v3.2.2+incompatible
require github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.2
require (
github.com/davecgh/go-spew v1.1.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3
golang.org/x/net v0.0.0-20220107192237-5cfca573fb4d // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
)