-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (23 loc) · 777 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
module github.com/semmidev/product_service
go 1.20
require (
github.com/elastic/go-elasticsearch/v8 v8.6.0
github.com/go-chi/chi/v5 v5.0.8
github.com/golang-migrate/migrate/v4 v4.15.2
github.com/lib/pq v1.10.7
github.com/nats-io/nats.go v1.23.0
)
require (
github.com/elastic/elastic-transport-go/v8 v8.0.0-20211216131617-bbee439d559c // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
go.uber.org/atomic v1.7.0 // indirect
)
require (
github.com/google/uuid v1.3.0
github.com/nats-io/nats-server/v2 v2.9.14 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
golang.org/x/crypto v0.5.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)