-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
go.mod
30 lines (26 loc) · 1.08 KB
/
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
29
30
module github.com/xmlking/micro-starter-kit
go 1.14
// for local development, you can repoint go-micro to local development go-micro workspace
// replace github.com/micro/go-micro/v2 => /Users/schintha/Developer/Work/go/3rd-party/go-micro
replace google.golang.org/grpc => google.golang.org/grpc v1.26.0
// replace github.com/xmlking/configor => /Users/schintha/Developer/Work/go/configor
require (
github.com/DATA-DOG/go-sqlmock v1.4.1 // indirect
github.com/envoyproxy/protoc-gen-validate v0.1.0
github.com/gogo/protobuf v1.3.1
github.com/golang/protobuf v1.4.2
github.com/infobloxopen/atlas-app-toolkit v0.21.1
github.com/infobloxopen/protoc-gen-gorm v0.20.0
github.com/jinzhu/gorm v1.9.13
github.com/markbates/pkger v0.17.0
github.com/micro/go-micro/v2 v2.9.1
github.com/pkg/errors v0.9.1
github.com/rs/zerolog v1.19.0
github.com/sarulabs/di/v2 v2.4.0
github.com/satori/go.uuid v1.2.0
github.com/stretchr/testify v1.6.1
github.com/thoas/go-funk v0.6.0
github.com/xmlking/configor v0.1.0
google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1
google.golang.org/grpc v1.26.0
)