diff --git a/README.md b/README.md index 47d7dd5a0b..04b6b2e520 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Go Micro [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Go.Dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/github.com/micro/go-micro/v2?tab=doc) [![Travis CI](https://api.travis-ci.org/micro/go-micro.svg?branch=master)](https://travis-ci.org/micro/go-micro) [![Go Report Card](https://goreportcard.com/badge/micro/go-micro)](https://goreportcard.com/report/github.com/micro/go-micro) +# Go Micro [![License](https://img.shields.io/:license-apache-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Go.Dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white&style=flat-square)](https://pkg.go.dev/github.com/asim/go-micro/v3?tab=doc) [![Travis CI](https://api.travis-ci.org/micro/go-micro.svg?branch=master)](https://travis-ci.org/micro/go-micro) [![Go Report Card](https://goreportcard.com/badge/micro/go-micro)](https://goreportcard.com/report/github.com/micro/go-micro) Go Micro is a framework for distributed systems development. @@ -51,7 +51,7 @@ are pluggable and allows Go Micro to be runtime agnostic. You can plugin any und To make use of Go Micro ```golang -import "github.com/micro/go-micro/v2" +import "github.com/asim/go-micro/v3" // create a new service service := micro.NewService( diff --git a/api/api.go b/api/api.go index 12a3d49990..5ce9b89ad4 100644 --- a/api/api.go +++ b/api/api.go @@ -5,8 +5,8 @@ import ( "regexp" "strings" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/server" ) type Api interface { diff --git a/api/handler/api/api.go b/api/handler/api/api.go index 2ccda0f01e..38567f8276 100644 --- a/api/handler/api/api.go +++ b/api/handler/api/api.go @@ -4,13 +4,13 @@ package api import ( "net/http" - goapi "github.com/micro/go-micro/v2/api" - "github.com/micro/go-micro/v2/api/handler" - api "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/util/ctx" + goapi "github.com/asim/go-micro/v3/api" + "github.com/asim/go-micro/v3/api/handler" + api "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/util/ctx" ) type apiHandler struct { diff --git a/api/handler/api/util.go b/api/handler/api/util.go index d0c79f9375..af18dccccb 100644 --- a/api/handler/api/util.go +++ b/api/handler/api/util.go @@ -7,9 +7,9 @@ import ( "net/http" "strings" - api "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" + api "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" "github.com/oxtoacart/bpool" ) diff --git a/api/handler/event/event.go b/api/handler/event/event.go index 98dbfe9069..d740373519 100644 --- a/api/handler/event/event.go +++ b/api/handler/event/event.go @@ -10,10 +10,10 @@ import ( "strings" "time" + "github.com/asim/go-micro/v3/api/handler" + proto "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/util/ctx" "github.com/google/uuid" - "github.com/micro/go-micro/v2/api/handler" - proto "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/util/ctx" "github.com/oxtoacart/bpool" ) diff --git a/api/handler/http/http.go b/api/handler/http/http.go index ee49a91420..3e721b4f81 100644 --- a/api/handler/http/http.go +++ b/api/handler/http/http.go @@ -8,9 +8,9 @@ import ( "net/http/httputil" "net/url" - "github.com/micro/go-micro/v2/api" - "github.com/micro/go-micro/v2/api/handler" - "github.com/micro/go-micro/v2/selector" + "github.com/asim/go-micro/v3/api" + "github.com/asim/go-micro/v3/api/handler" + "github.com/asim/go-micro/v3/selector" ) const ( diff --git a/api/handler/http/http_test.go b/api/handler/http/http_test.go index c4c6ad69b7..4a88957fea 100644 --- a/api/handler/http/http_test.go +++ b/api/handler/http/http_test.go @@ -6,12 +6,12 @@ import ( "net/http/httptest" "testing" - "github.com/micro/go-micro/v2/api/handler" - "github.com/micro/go-micro/v2/api/resolver" - "github.com/micro/go-micro/v2/api/resolver/vpath" - "github.com/micro/go-micro/v2/api/router" - regRouter "github.com/micro/go-micro/v2/api/router/registry" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/api/handler" + "github.com/asim/go-micro/v3/api/resolver" + "github.com/asim/go-micro/v3/api/resolver/vpath" + "github.com/asim/go-micro/v3/api/router" + regRouter "github.com/asim/go-micro/v3/api/router/registry" + "github.com/asim/go-micro/v3/registry" ) func testHttp(t *testing.T, path, service, ns string) { diff --git a/api/handler/options.go b/api/handler/options.go index 133454bed7..4ccd6bbcd4 100644 --- a/api/handler/options.go +++ b/api/handler/options.go @@ -1,8 +1,8 @@ package handler import ( - "github.com/micro/go-micro/v2/api/router" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3/api/router" + "github.com/asim/go-micro/v3/client" ) var ( diff --git a/api/handler/rpc/rpc.go b/api/handler/rpc/rpc.go index 041cd61522..9b0a92d54e 100644 --- a/api/handler/rpc/rpc.go +++ b/api/handler/rpc/rpc.go @@ -9,21 +9,21 @@ import ( "strconv" "strings" + "github.com/asim/go-micro/v3/api" + "github.com/asim/go-micro/v3/api/handler" + "github.com/asim/go-micro/v3/api/internal/proto" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/codec/jsonrpc" + "github.com/asim/go-micro/v3/codec/protorpc" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/util/ctx" + "github.com/asim/go-micro/v3/util/qson" jsonpatch "github.com/evanphx/json-patch/v5" - "github.com/micro/go-micro/v2/api" - "github.com/micro/go-micro/v2/api/handler" - "github.com/micro/go-micro/v2/api/internal/proto" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/codec/jsonrpc" - "github.com/micro/go-micro/v2/codec/protorpc" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/util/ctx" - "github.com/micro/go-micro/v2/util/qson" "github.com/oxtoacart/bpool" ) diff --git a/api/handler/rpc/rpc_test.go b/api/handler/rpc/rpc_test.go index 1b602f8476..230dc15474 100644 --- a/api/handler/rpc/rpc_test.go +++ b/api/handler/rpc/rpc_test.go @@ -6,8 +6,8 @@ import ( "net/http" "testing" + go_api "github.com/asim/go-micro/v3/api/proto" "github.com/golang/protobuf/proto" - go_api "github.com/micro/go-micro/v2/api/proto" ) func TestRequestPayloadFromRequest(t *testing.T) { diff --git a/api/handler/rpc/stream.go b/api/handler/rpc/stream.go index 7b7b143332..5233fba69f 100644 --- a/api/handler/rpc/stream.go +++ b/api/handler/rpc/stream.go @@ -9,14 +9,14 @@ import ( "strings" "time" + "github.com/asim/go-micro/v3/api" + "github.com/asim/go-micro/v3/client" + raw "github.com/asim/go-micro/v3/codec/bytes" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/selector" "github.com/gobwas/httphead" "github.com/gobwas/ws" "github.com/gobwas/ws/wsutil" - "github.com/micro/go-micro/v2/api" - "github.com/micro/go-micro/v2/client" - raw "github.com/micro/go-micro/v2/codec/bytes" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/selector" ) // serveWebsocket will stream rpc back over websockets assuming json diff --git a/api/handler/web/web.go b/api/handler/web/web.go index 009b5a0f67..eb03a0dc98 100644 --- a/api/handler/web/web.go +++ b/api/handler/web/web.go @@ -11,9 +11,9 @@ import ( "net/url" "strings" - "github.com/micro/go-micro/v2/api" - "github.com/micro/go-micro/v2/api/handler" - "github.com/micro/go-micro/v2/selector" + "github.com/asim/go-micro/v3/api" + "github.com/asim/go-micro/v3/api/handler" + "github.com/asim/go-micro/v3/selector" ) const ( diff --git a/api/resolver/grpc/grpc.go b/api/resolver/grpc/grpc.go index 97ea279f6d..80fdcb5880 100644 --- a/api/resolver/grpc/grpc.go +++ b/api/resolver/grpc/grpc.go @@ -6,7 +6,7 @@ import ( "net/http" "strings" - "github.com/micro/go-micro/v2/api/resolver" + "github.com/asim/go-micro/v3/api/resolver" ) type Resolver struct{} diff --git a/api/resolver/host/host.go b/api/resolver/host/host.go index 204bdfa8b5..c2ebd96fbf 100644 --- a/api/resolver/host/host.go +++ b/api/resolver/host/host.go @@ -4,7 +4,7 @@ package host import ( "net/http" - "github.com/micro/go-micro/v2/api/resolver" + "github.com/asim/go-micro/v3/api/resolver" ) type Resolver struct { diff --git a/api/resolver/path/path.go b/api/resolver/path/path.go index 84a9265607..17c8c8c486 100644 --- a/api/resolver/path/path.go +++ b/api/resolver/path/path.go @@ -5,7 +5,7 @@ import ( "net/http" "strings" - "github.com/micro/go-micro/v2/api/resolver" + "github.com/asim/go-micro/v3/api/resolver" ) type Resolver struct { diff --git a/api/resolver/vpath/vpath.go b/api/resolver/vpath/vpath.go index f653a86f58..4b18d20c45 100644 --- a/api/resolver/vpath/vpath.go +++ b/api/resolver/vpath/vpath.go @@ -7,7 +7,7 @@ import ( "regexp" "strings" - "github.com/micro/go-micro/v2/api/resolver" + "github.com/asim/go-micro/v3/api/resolver" ) func NewResolver(opts ...resolver.Option) resolver.Resolver { diff --git a/api/router/options.go b/api/router/options.go index 69b8a50466..f9915c24da 100644 --- a/api/router/options.go +++ b/api/router/options.go @@ -1,9 +1,9 @@ package router import ( - "github.com/micro/go-micro/v2/api/resolver" - "github.com/micro/go-micro/v2/api/resolver/vpath" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/api/resolver" + "github.com/asim/go-micro/v3/api/resolver/vpath" + "github.com/asim/go-micro/v3/registry" ) type Options struct { diff --git a/api/router/registry/registry.go b/api/router/registry/registry.go index cdd3de22fc..f157fb6ff6 100644 --- a/api/router/registry/registry.go +++ b/api/router/registry/registry.go @@ -10,13 +10,13 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/api" - "github.com/micro/go-micro/v2/api/router" - "github.com/micro/go-micro/v2/api/router/util" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/registry/cache" + "github.com/asim/go-micro/v3/api" + "github.com/asim/go-micro/v3/api/router" + "github.com/asim/go-micro/v3/api/router/util" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/registry/cache" ) // endpoint struct, that holds compiled pcre diff --git a/api/router/registry/registry_test.go b/api/router/registry/registry_test.go index 5d4813867a..8221b83a24 100644 --- a/api/router/registry/registry_test.go +++ b/api/router/registry/registry_test.go @@ -3,7 +3,7 @@ package registry import ( "testing" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" "github.com/stretchr/testify/assert" ) diff --git a/api/router/router.go b/api/router/router.go index 1831180451..10d9c7c156 100644 --- a/api/router/router.go +++ b/api/router/router.go @@ -4,7 +4,7 @@ package router import ( "net/http" - "github.com/micro/go-micro/v2/api" + "github.com/asim/go-micro/v3/api" ) // Router is used to determine an endpoint for a request diff --git a/api/router/static/static.go b/api/router/static/static.go index 7bcf1d7ffa..bc640bf9d8 100644 --- a/api/router/static/static.go +++ b/api/router/static/static.go @@ -8,13 +8,13 @@ import ( "strings" "sync" - "github.com/micro/go-micro/v2/api" - "github.com/micro/go-micro/v2/api/router" - "github.com/micro/go-micro/v2/api/router/util" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" - rutil "github.com/micro/go-micro/v2/util/registry" + "github.com/asim/go-micro/v3/api" + "github.com/asim/go-micro/v3/api/router" + "github.com/asim/go-micro/v3/api/router/util" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" + rutil "github.com/asim/go-micro/v3/util/registry" ) type endpoint struct { diff --git a/api/router/util/parse.go b/api/router/util/parse.go index 83db2d47ec..07598f68cc 100644 --- a/api/router/util/parse.go +++ b/api/router/util/parse.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/micro/go-micro/v2/logger" + "github.com/asim/go-micro/v3/logger" ) // InvalidTemplateError indicates that the path template is not valid. diff --git a/api/router/util/parse_test.go b/api/router/util/parse_test.go index b15b618497..7e74ccf387 100644 --- a/api/router/util/parse_test.go +++ b/api/router/util/parse_test.go @@ -8,7 +8,7 @@ import ( "reflect" "testing" - "github.com/micro/go-micro/v2/logger" + "github.com/asim/go-micro/v3/logger" ) func TestTokenize(t *testing.T) { diff --git a/api/router/util/runtime.go b/api/router/util/runtime.go index 7b61555213..d36a77acf6 100644 --- a/api/router/util/runtime.go +++ b/api/router/util/runtime.go @@ -7,7 +7,7 @@ import ( "fmt" "strings" - "github.com/micro/go-micro/v2/logger" + "github.com/asim/go-micro/v3/logger" ) var ( diff --git a/api/server/acme/autocert/autocert.go b/api/server/acme/autocert/autocert.go index 579be51f97..8bfe43565c 100644 --- a/api/server/acme/autocert/autocert.go +++ b/api/server/acme/autocert/autocert.go @@ -7,8 +7,8 @@ import ( "net" "os" - "github.com/micro/go-micro/v2/api/server/acme" - "github.com/micro/go-micro/v2/logger" + "github.com/asim/go-micro/v3/api/server/acme" + "github.com/asim/go-micro/v3/logger" "golang.org/x/crypto/acme/autocert" ) diff --git a/api/server/http/http.go b/api/server/http/http.go index 518977e67a..8e19e3b7e4 100644 --- a/api/server/http/http.go +++ b/api/server/http/http.go @@ -8,10 +8,10 @@ import ( "os" "sync" + "github.com/asim/go-micro/v3/api/server" + "github.com/asim/go-micro/v3/api/server/cors" + "github.com/asim/go-micro/v3/logger" "github.com/gorilla/handlers" - "github.com/micro/go-micro/v2/api/server" - "github.com/micro/go-micro/v2/api/server/cors" - "github.com/micro/go-micro/v2/logger" ) type httpServer struct { diff --git a/api/server/options.go b/api/server/options.go index 6d87f54317..925aca118f 100644 --- a/api/server/options.go +++ b/api/server/options.go @@ -4,8 +4,8 @@ import ( "crypto/tls" "net/http" - "github.com/micro/go-micro/v2/api/resolver" - "github.com/micro/go-micro/v2/api/server/acme" + "github.com/asim/go-micro/v3/api/resolver" + "github.com/asim/go-micro/v3/api/server/acme" ) type Option func(o *Options) diff --git a/broker/http.go b/broker/http.go index ef06a18295..5c16d8cf60 100644 --- a/broker/http.go +++ b/broker/http.go @@ -17,14 +17,14 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/codec/json" + merr "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/registry/cache" + maddr "github.com/asim/go-micro/v3/util/addr" + mnet "github.com/asim/go-micro/v3/util/net" + mls "github.com/asim/go-micro/v3/util/tls" "github.com/google/uuid" - "github.com/micro/go-micro/v2/codec/json" - merr "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/registry/cache" - maddr "github.com/micro/go-micro/v2/util/addr" - mnet "github.com/micro/go-micro/v2/util/net" - mls "github.com/micro/go-micro/v2/util/tls" "golang.org/x/net/http2" ) diff --git a/broker/http_test.go b/broker/http_test.go index d5f65c1c68..d088a4d95a 100644 --- a/broker/http_test.go +++ b/broker/http_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/registry" "github.com/google/uuid" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/registry" ) var ( diff --git a/broker/options.go b/broker/options.go index 18fd5935f2..c5408160ef 100644 --- a/broker/options.go +++ b/broker/options.go @@ -4,8 +4,8 @@ import ( "context" "crypto/tls" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/registry" ) type Options struct { diff --git a/client/backoff.go b/client/backoff.go index 7281f4a8fa..1978ee60a2 100644 --- a/client/backoff.go +++ b/client/backoff.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/micro/go-micro/v2/util/backoff" + "github.com/asim/go-micro/v3/util/backoff" ) type BackoffFunc func(ctx context.Context, req Request, attempts int) (time.Duration, error) diff --git a/client/cache.go b/client/cache.go index a6ab71c1b3..b94bb850ec 100644 --- a/client/cache.go +++ b/client/cache.go @@ -7,7 +7,7 @@ import ( "hash/fnv" "time" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3/metadata" cache "github.com/patrickmn/go-cache" ) diff --git a/client/cache_test.go b/client/cache_test.go index 70721a231d..84c6de4bc5 100644 --- a/client/cache_test.go +++ b/client/cache_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3/metadata" ) func TestCache(t *testing.T) { diff --git a/client/client.go b/client/client.go index d16b1bda4b..7636cea602 100644 --- a/client/client.go +++ b/client/client.go @@ -5,7 +5,7 @@ import ( "context" "time" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) // Client is the interface used to make requests to services. diff --git a/client/common_test.go b/client/common_test.go index d1b347e606..67e78d9e2a 100644 --- a/client/common_test.go +++ b/client/common_test.go @@ -1,7 +1,7 @@ package client import ( - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) var ( diff --git a/client/options.go b/client/options.go index 83c2c6f44f..03e9e2a9ea 100644 --- a/client/options.go +++ b/client/options.go @@ -4,11 +4,11 @@ import ( "context" "time" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/transport" ) type Options struct { diff --git a/client/options_test.go b/client/options_test.go index 83c3a55751..9d025adbd1 100644 --- a/client/options_test.go +++ b/client/options_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) func TestCallOptions(t *testing.T) { diff --git a/client/retry.go b/client/retry.go index 92ba4c0785..8739389a7d 100644 --- a/client/retry.go +++ b/client/retry.go @@ -3,7 +3,7 @@ package client import ( "context" - "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3/errors" ) // note that returning either false or a non-nil error will result in the call not being retried diff --git a/client/rpc_client.go b/client/rpc_client.go index 064baf93e3..b4f8801039 100644 --- a/client/rpc_client.go +++ b/client/rpc_client.go @@ -6,18 +6,18 @@ import ( "sync/atomic" "time" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/codec" + raw "github.com/asim/go-micro/v3/codec/bytes" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/transport" + "github.com/asim/go-micro/v3/util/buf" + "github.com/asim/go-micro/v3/util/net" + "github.com/asim/go-micro/v3/util/pool" "github.com/google/uuid" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/codec" - raw "github.com/micro/go-micro/v2/codec/bytes" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/transport" - "github.com/micro/go-micro/v2/util/buf" - "github.com/micro/go-micro/v2/util/net" - "github.com/micro/go-micro/v2/util/pool" ) type rpcClient struct { diff --git a/client/rpc_client_test.go b/client/rpc_client_test.go index 0e0da56557..6f51d07ea8 100644 --- a/client/rpc_client_test.go +++ b/client/rpc_client_test.go @@ -5,9 +5,9 @@ import ( "fmt" "testing" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" ) func newTestRegistry() registry.Registry { diff --git a/client/rpc_codec.go b/client/rpc_codec.go index c22b9d2865..0c849a8574 100644 --- a/client/rpc_codec.go +++ b/client/rpc_codec.go @@ -4,16 +4,16 @@ import ( "bytes" errs "errors" - "github.com/micro/go-micro/v2/codec" - raw "github.com/micro/go-micro/v2/codec/bytes" - "github.com/micro/go-micro/v2/codec/grpc" - "github.com/micro/go-micro/v2/codec/json" - "github.com/micro/go-micro/v2/codec/jsonrpc" - "github.com/micro/go-micro/v2/codec/proto" - "github.com/micro/go-micro/v2/codec/protorpc" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/codec" + raw "github.com/asim/go-micro/v3/codec/bytes" + "github.com/asim/go-micro/v3/codec/grpc" + "github.com/asim/go-micro/v3/codec/json" + "github.com/asim/go-micro/v3/codec/jsonrpc" + "github.com/asim/go-micro/v3/codec/proto" + "github.com/asim/go-micro/v3/codec/protorpc" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/transport" ) const ( diff --git a/client/rpc_request.go b/client/rpc_request.go index 97ca50f7f0..782520bac9 100644 --- a/client/rpc_request.go +++ b/client/rpc_request.go @@ -1,7 +1,7 @@ package client import ( - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type rpcRequest struct { diff --git a/client/rpc_response.go b/client/rpc_response.go index d7faaea672..0fa33ab663 100644 --- a/client/rpc_response.go +++ b/client/rpc_response.go @@ -1,8 +1,8 @@ package client import ( - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/transport" ) type rpcResponse struct { diff --git a/client/rpc_stream.go b/client/rpc_stream.go index 426aafc473..a5b617c46b 100644 --- a/client/rpc_stream.go +++ b/client/rpc_stream.go @@ -5,7 +5,7 @@ import ( "io" "sync" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) // Implements the streamer interface diff --git a/client/wrapper.go b/client/wrapper.go index d5138bccb5..fa21e17aa7 100644 --- a/client/wrapper.go +++ b/client/wrapper.go @@ -3,7 +3,7 @@ package client import ( "context" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) // CallFunc represents the individual call func diff --git a/cmd/cmd.go b/cmd/cmd.go index 9e8fa505d7..fe267486ee 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -9,19 +9,19 @@ import ( "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2/auth" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/debug/profile" - "github.com/micro/go-micro/v2/debug/trace" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/runtime" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/server" - "github.com/micro/go-micro/v2/store" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/auth" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/debug/profile" + "github.com/asim/go-micro/v3/debug/trace" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/runtime" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/server" + "github.com/asim/go-micro/v3/store" + "github.com/asim/go-micro/v3/transport" ) type Cmd interface { diff --git a/cmd/options.go b/cmd/options.go index 6431bdce12..0eb70d8303 100644 --- a/cmd/options.go +++ b/cmd/options.go @@ -3,18 +3,18 @@ package cmd import ( "context" - "github.com/micro/go-micro/v2/auth" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/debug/profile" - "github.com/micro/go-micro/v2/debug/trace" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/runtime" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/server" - "github.com/micro/go-micro/v2/store" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/auth" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/debug/profile" + "github.com/asim/go-micro/v3/debug/trace" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/runtime" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/server" + "github.com/asim/go-micro/v3/store" + "github.com/asim/go-micro/v3/transport" ) type Options struct { diff --git a/cmd/protoc-gen-micro/examples/greeter/greeter.pb.micro.go b/cmd/protoc-gen-micro/examples/greeter/greeter.pb.micro.go index bbbe3a010f..ba524f8ae1 100644 --- a/cmd/protoc-gen-micro/examples/greeter/greeter.pb.micro.go +++ b/cmd/protoc-gen-micro/examples/greeter/greeter.pb.micro.go @@ -12,9 +12,9 @@ import ( import ( context "context" - api "github.com/micro/go-micro/v2/api" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + api "github.com/asim/go-micro/v3/api" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/cmd/protoc-gen-micro/go.mod b/cmd/protoc-gen-micro/go.mod index 577c813d00..582d57290e 100644 --- a/cmd/protoc-gen-micro/go.mod +++ b/cmd/protoc-gen-micro/go.mod @@ -4,6 +4,6 @@ go 1.13 require ( github.com/golang/protobuf v1.3.5 - github.com/micro/go-micro/v2 v2.4.1-0.20200414211455-9a5b8ff50d31 + github.com/asim/go-micro/v3 v2.4.1-0.20200414211455-9a5b8ff50d31 google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1 ) diff --git a/cmd/protoc-gen-micro/go.sum b/cmd/protoc-gen-micro/go.sum index 3a4a5f0581..a887781860 100644 --- a/cmd/protoc-gen-micro/go.sum +++ b/cmd/protoc-gen-micro/go.sum @@ -253,8 +253,8 @@ github.com/mholt/certmagic v0.9.3/go.mod h1:nu8jbsbtwK4205EDH/ZUMTKsfYpJA1Q7MKXH github.com/micro/cli/v2 v2.1.2 h1:43J1lChg/rZCC1rvdqZNFSQDrGT7qfMrtp6/ztpIkEM= github.com/micro/cli/v2 v2.1.2/go.mod h1:EguNh6DAoWKm9nmk+k/Rg0H3lQnDxqzu5x5srOtGtYg= github.com/micro/go-micro v1.18.0 h1:gP70EZVHpJuUIT0YWth192JmlIci+qMOEByHm83XE9E= -github.com/micro/go-micro/v2 v2.4.1-0.20200414211455-9a5b8ff50d31 h1:WHma0yvZF/QjH72IxGHV+oYui3AhvgL9Xy5WKK06Fb8= -github.com/micro/go-micro/v2 v2.4.1-0.20200414211455-9a5b8ff50d31/go.mod h1:E9E3RGlgxMl5yv7/IITu5jHAxWveL8rLR9kim8EzDJI= +github.com/asim/go-micro/v3 v2.4.1-0.20200414211455-9a5b8ff50d31 h1:WHma0yvZF/QjH72IxGHV+oYui3AhvgL9Xy5WKK06Fb8= +github.com/asim/go-micro/v3 v2.4.1-0.20200414211455-9a5b8ff50d31/go.mod h1:E9E3RGlgxMl5yv7/IITu5jHAxWveL8rLR9kim8EzDJI= github.com/miekg/dns v1.1.15/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.27 h1:aEH/kqUzUxGJ/UHcEKdJY+ugH6WEzsEBBSPa8zuy1aM= github.com/miekg/dns v1.1.27/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= diff --git a/cmd/protoc-gen-micro/plugin/micro/micro.go b/cmd/protoc-gen-micro/plugin/micro/micro.go index 2cf3f79fa1..35e825a963 100644 --- a/cmd/protoc-gen-micro/plugin/micro/micro.go +++ b/cmd/protoc-gen-micro/plugin/micro/micro.go @@ -15,10 +15,10 @@ import ( // Paths for packages used by code generated in this file, // relative to the import_prefix of the generator.Generator. const ( - apiPkgPath = "github.com/micro/go-micro/v2/api" + apiPkgPath = "github.com/asim/go-micro/v3/api" contextPkgPath = "context" - clientPkgPath = "github.com/micro/go-micro/v2/client" - serverPkgPath = "github.com/micro/go-micro/v2/server" + clientPkgPath = "github.com/asim/go-micro/v3/client" + serverPkgPath = "github.com/asim/go-micro/v3/server" ) func init() { diff --git a/codec/bytes/bytes.go b/codec/bytes/bytes.go index 23a6c6fc54..e27caf568c 100644 --- a/codec/bytes/bytes.go +++ b/codec/bytes/bytes.go @@ -6,7 +6,7 @@ import ( "io" "io/ioutil" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type Codec struct { diff --git a/codec/bytes/marshaler.go b/codec/bytes/marshaler.go index d15e8d7572..4da51fde7e 100644 --- a/codec/bytes/marshaler.go +++ b/codec/bytes/marshaler.go @@ -1,7 +1,7 @@ package bytes import ( - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type Marshaler struct{} diff --git a/codec/grpc/grpc.go b/codec/grpc/grpc.go index 90bf4eb67a..29e2e786d7 100644 --- a/codec/grpc/grpc.go +++ b/codec/grpc/grpc.go @@ -8,8 +8,8 @@ import ( "io" "strings" + "github.com/asim/go-micro/v3/codec" "github.com/golang/protobuf/proto" - "github.com/micro/go-micro/v2/codec" ) type Codec struct { diff --git a/codec/json/json.go b/codec/json/json.go index 7db36a5022..449cb75959 100644 --- a/codec/json/json.go +++ b/codec/json/json.go @@ -5,9 +5,9 @@ import ( "encoding/json" "io" + "github.com/asim/go-micro/v3/codec" "github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/proto" - "github.com/micro/go-micro/v2/codec" ) type Codec struct { diff --git a/codec/jsonrpc/client.go b/codec/jsonrpc/client.go index f1e320a0fe..4826cbd2a4 100644 --- a/codec/jsonrpc/client.go +++ b/codec/jsonrpc/client.go @@ -6,7 +6,7 @@ import ( "io" "sync" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type clientCodec struct { diff --git a/codec/jsonrpc/jsonrpc.go b/codec/jsonrpc/jsonrpc.go index fcf2ac65ab..8655420360 100644 --- a/codec/jsonrpc/jsonrpc.go +++ b/codec/jsonrpc/jsonrpc.go @@ -7,7 +7,7 @@ import ( "fmt" "io" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type jsonCodec struct { diff --git a/codec/jsonrpc/server.go b/codec/jsonrpc/server.go index 48b71e6488..128a38025e 100644 --- a/codec/jsonrpc/server.go +++ b/codec/jsonrpc/server.go @@ -5,7 +5,7 @@ import ( "fmt" "io" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type serverCodec struct { diff --git a/codec/proto/marshaler.go b/codec/proto/marshaler.go index 82acc4b282..86eb45d205 100644 --- a/codec/proto/marshaler.go +++ b/codec/proto/marshaler.go @@ -3,8 +3,8 @@ package proto import ( "bytes" + "github.com/asim/go-micro/v3/codec" "github.com/golang/protobuf/proto" - "github.com/micro/go-micro/v2/codec" "github.com/oxtoacart/bpool" ) diff --git a/codec/proto/proto.go b/codec/proto/proto.go index 8707361914..03ed329c19 100644 --- a/codec/proto/proto.go +++ b/codec/proto/proto.go @@ -5,8 +5,8 @@ import ( "io" "io/ioutil" + "github.com/asim/go-micro/v3/codec" "github.com/golang/protobuf/proto" - "github.com/micro/go-micro/v2/codec" ) type Codec struct { diff --git a/codec/protorpc/protorpc.go b/codec/protorpc/protorpc.go index ce9456935d..7a28987c12 100644 --- a/codec/protorpc/protorpc.go +++ b/codec/protorpc/protorpc.go @@ -8,8 +8,8 @@ import ( "strconv" "sync" + "github.com/asim/go-micro/v3/codec" "github.com/golang/protobuf/proto" - "github.com/micro/go-micro/v2/codec" ) type flusher interface { diff --git a/codec/text/text.go b/codec/text/text.go index 86be206869..8aa7970e0a 100644 --- a/codec/text/text.go +++ b/codec/text/text.go @@ -6,7 +6,7 @@ import ( "io" "io/ioutil" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type Codec struct { diff --git a/config/config.go b/config/config.go index cd30f8b29d..5715cdd77c 100644 --- a/config/config.go +++ b/config/config.go @@ -4,10 +4,10 @@ package config import ( "context" - "github.com/micro/go-micro/v2/config/loader" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/source" - "github.com/micro/go-micro/v2/config/source/file" + "github.com/asim/go-micro/v3/config/loader" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/source" + "github.com/asim/go-micro/v3/config/source/file" ) // Config is an interface abstraction for dynamic configuration diff --git a/config/default.go b/config/default.go index 34a14c146a..255c23b7cf 100644 --- a/config/default.go +++ b/config/default.go @@ -5,11 +5,11 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/config/loader" - "github.com/micro/go-micro/v2/config/loader/memory" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/reader/json" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/loader" + "github.com/asim/go-micro/v3/config/loader/memory" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/reader/json" + "github.com/asim/go-micro/v3/config/source" ) type config struct { diff --git a/config/default_test.go b/config/default_test.go index 0250a546fd..100b8966c9 100644 --- a/config/default_test.go +++ b/config/default_test.go @@ -9,10 +9,10 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/config/source" - "github.com/micro/go-micro/v2/config/source/env" - "github.com/micro/go-micro/v2/config/source/file" - "github.com/micro/go-micro/v2/config/source/memory" + "github.com/asim/go-micro/v3/config/source" + "github.com/asim/go-micro/v3/config/source/env" + "github.com/asim/go-micro/v3/config/source/file" + "github.com/asim/go-micro/v3/config/source/memory" ) func createFileForIssue18(t *testing.T, content string) *os.File { diff --git a/config/encoder/json/json.go b/config/encoder/json/json.go index 67714dfe40..b1b669f377 100644 --- a/config/encoder/json/json.go +++ b/config/encoder/json/json.go @@ -3,7 +3,7 @@ package json import ( "encoding/json" - "github.com/micro/go-micro/v2/config/encoder" + "github.com/asim/go-micro/v3/config/encoder" ) type jsonEncoder struct{} diff --git a/config/loader/loader.go b/config/loader/loader.go index 1dcb1450dd..e46ddc7c8a 100644 --- a/config/loader/loader.go +++ b/config/loader/loader.go @@ -4,8 +4,8 @@ package loader import ( "context" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/source" ) // Loader manages loading sources diff --git a/config/loader/memory/memory.go b/config/loader/memory/memory.go index 5af7d5c482..0a0d409dc8 100644 --- a/config/loader/memory/memory.go +++ b/config/loader/memory/memory.go @@ -9,10 +9,10 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/config/loader" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/reader/json" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/loader" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/reader/json" + "github.com/asim/go-micro/v3/config/source" ) type memory struct { diff --git a/config/loader/memory/options.go b/config/loader/memory/options.go index cbf9d4978b..fd1bf90f18 100644 --- a/config/loader/memory/options.go +++ b/config/loader/memory/options.go @@ -1,9 +1,9 @@ package memory import ( - "github.com/micro/go-micro/v2/config/loader" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/loader" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/source" ) // WithSource appends a source to list of sources diff --git a/config/options.go b/config/options.go index 34e176a476..9f382fe0ce 100644 --- a/config/options.go +++ b/config/options.go @@ -1,9 +1,9 @@ package config import ( - "github.com/micro/go-micro/v2/config/loader" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/loader" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/source" ) // WithLoader sets the loader for manager config diff --git a/config/reader/json/json.go b/config/reader/json/json.go index 96b2c7aa62..df5662c97a 100644 --- a/config/reader/json/json.go +++ b/config/reader/json/json.go @@ -4,11 +4,11 @@ import ( "errors" "time" + "github.com/asim/go-micro/v3/config/encoder" + "github.com/asim/go-micro/v3/config/encoder/json" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/source" "github.com/imdario/mergo" - "github.com/micro/go-micro/v2/config/encoder" - "github.com/micro/go-micro/v2/config/encoder/json" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/source" ) type jsonReader struct { diff --git a/config/reader/json/json_test.go b/config/reader/json/json_test.go index 2afff0fcde..e4b33c4339 100644 --- a/config/reader/json/json_test.go +++ b/config/reader/json/json_test.go @@ -3,7 +3,7 @@ package json import ( "testing" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) func TestReader(t *testing.T) { diff --git a/config/reader/json/values.go b/config/reader/json/values.go index ce7601c733..ffc428f5f1 100644 --- a/config/reader/json/values.go +++ b/config/reader/json/values.go @@ -7,9 +7,9 @@ import ( "strings" "time" + "github.com/asim/go-micro/v3/config/reader" + "github.com/asim/go-micro/v3/config/source" simple "github.com/bitly/go-simplejson" - "github.com/micro/go-micro/v2/config/reader" - "github.com/micro/go-micro/v2/config/source" ) type jsonValues struct { diff --git a/config/reader/json/values_test.go b/config/reader/json/values_test.go index 3ace3eb9c6..5ccb31bf29 100644 --- a/config/reader/json/values_test.go +++ b/config/reader/json/values_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) func TestValues(t *testing.T) { diff --git a/config/reader/options.go b/config/reader/options.go index 442fa87e02..15656859c7 100644 --- a/config/reader/options.go +++ b/config/reader/options.go @@ -1,8 +1,8 @@ package reader import ( - "github.com/micro/go-micro/v2/config/encoder" - "github.com/micro/go-micro/v2/config/encoder/json" + "github.com/asim/go-micro/v3/config/encoder" + "github.com/asim/go-micro/v3/config/encoder/json" ) type Options struct { diff --git a/config/reader/reader.go b/config/reader/reader.go index e10ff6dfbf..971db87331 100644 --- a/config/reader/reader.go +++ b/config/reader/reader.go @@ -4,7 +4,7 @@ package reader import ( "time" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) // Reader is an interface for merging changesets diff --git a/config/secrets/box/box.go b/config/secrets/box/box.go index 67c559ff72..b08d7f1e03 100644 --- a/config/secrets/box/box.go +++ b/config/secrets/box/box.go @@ -2,7 +2,7 @@ package box import ( - "github.com/micro/go-micro/v2/config/secrets" + "github.com/asim/go-micro/v3/config/secrets" "github.com/pkg/errors" naclbox "golang.org/x/crypto/nacl/box" diff --git a/config/secrets/box/box_test.go b/config/secrets/box/box_test.go index 3196ae8c7e..1adf7d95ab 100644 --- a/config/secrets/box/box_test.go +++ b/config/secrets/box/box_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/micro/go-micro/v2/config/secrets" + "github.com/asim/go-micro/v3/config/secrets" naclbox "golang.org/x/crypto/nacl/box" ) diff --git a/config/secrets/secretbox/secretbox.go b/config/secrets/secretbox/secretbox.go index 50dae5192f..3d0f31a354 100644 --- a/config/secrets/secretbox/secretbox.go +++ b/config/secrets/secretbox/secretbox.go @@ -3,7 +3,7 @@ package secretbox import ( - "github.com/micro/go-micro/v2/config/secrets" + "github.com/asim/go-micro/v3/config/secrets" "github.com/pkg/errors" "golang.org/x/crypto/nacl/secretbox" diff --git a/config/secrets/secretbox/secretbox_test.go b/config/secrets/secretbox/secretbox_test.go index a0c1e07a8a..49420fe637 100644 --- a/config/secrets/secretbox/secretbox_test.go +++ b/config/secrets/secretbox/secretbox_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/micro/go-micro/v2/config/secrets" + "github.com/asim/go-micro/v3/config/secrets" ) func TestSecretBox(t *testing.T) { diff --git a/config/source/cli/cli.go b/config/source/cli/cli.go index 6c065cb5d7..c07ae65555 100644 --- a/config/source/cli/cli.go +++ b/config/source/cli/cli.go @@ -7,10 +7,10 @@ import ( "strings" "time" + "github.com/asim/go-micro/v3/cmd" + "github.com/asim/go-micro/v3/config/source" "github.com/imdario/mergo" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2/cmd" - "github.com/micro/go-micro/v2/config/source" ) type cliSource struct { diff --git a/config/source/cli/cli_test.go b/config/source/cli/cli_test.go index 154faeab45..11531e7a69 100644 --- a/config/source/cli/cli_test.go +++ b/config/source/cli/cli_test.go @@ -5,11 +5,11 @@ import ( "os" "testing" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/cmd" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/config/source" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/cmd" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/source" ) func TestCliSourceDefault(t *testing.T) { diff --git a/config/source/cli/options.go b/config/source/cli/options.go index 28d2872099..0b56a1398d 100644 --- a/config/source/cli/options.go +++ b/config/source/cli/options.go @@ -3,8 +3,8 @@ package cli import ( "context" + "github.com/asim/go-micro/v3/config/source" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2/config/source" ) type contextKey struct{} diff --git a/config/source/env/env.go b/config/source/env/env.go index 25f5b82712..14000f2928 100644 --- a/config/source/env/env.go +++ b/config/source/env/env.go @@ -6,8 +6,8 @@ import ( "strings" "time" + "github.com/asim/go-micro/v3/config/source" "github.com/imdario/mergo" - "github.com/micro/go-micro/v2/config/source" ) var ( diff --git a/config/source/env/env_test.go b/config/source/env/env_test.go index 7b0f99d469..8e3723bc4e 100644 --- a/config/source/env/env_test.go +++ b/config/source/env/env_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) func TestEnv_Read(t *testing.T) { diff --git a/config/source/env/options.go b/config/source/env/options.go index 27f99241a8..412c9082cb 100644 --- a/config/source/env/options.go +++ b/config/source/env/options.go @@ -5,7 +5,7 @@ import ( "strings" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) type strippedPrefixKey struct{} diff --git a/config/source/env/watcher.go b/config/source/env/watcher.go index bf7fb481f6..82e6d7a82e 100644 --- a/config/source/env/watcher.go +++ b/config/source/env/watcher.go @@ -1,7 +1,7 @@ package env import ( - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) type watcher struct { diff --git a/config/source/file/file.go b/config/source/file/file.go index f04d67c6cc..1a01596dde 100644 --- a/config/source/file/file.go +++ b/config/source/file/file.go @@ -5,7 +5,7 @@ import ( "io/ioutil" "os" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) type file struct { diff --git a/config/source/file/file_test.go b/config/source/file/file_test.go index e388a88a07..783867913a 100644 --- a/config/source/file/file_test.go +++ b/config/source/file/file_test.go @@ -7,8 +7,8 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/source/file" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/config/source/file" ) func TestConfig(t *testing.T) { diff --git a/config/source/file/format.go b/config/source/file/format.go index 09f10071b5..0d151713c3 100644 --- a/config/source/file/format.go +++ b/config/source/file/format.go @@ -3,7 +3,7 @@ package file import ( "strings" - "github.com/micro/go-micro/v2/config/encoder" + "github.com/asim/go-micro/v3/config/encoder" ) func format(p string, e encoder.Encoder) string { diff --git a/config/source/file/format_test.go b/config/source/file/format_test.go index 8383f84ac9..3aa526193c 100644 --- a/config/source/file/format_test.go +++ b/config/source/file/format_test.go @@ -3,7 +3,7 @@ package file import ( "testing" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) func TestFormat(t *testing.T) { diff --git a/config/source/file/options.go b/config/source/file/options.go index e2f67bb480..9b569bf7fa 100644 --- a/config/source/file/options.go +++ b/config/source/file/options.go @@ -3,7 +3,7 @@ package file import ( "context" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) type filePathKey struct{} diff --git a/config/source/file/watcher.go b/config/source/file/watcher.go index f26cc6e4ce..b6cbe0a02a 100644 --- a/config/source/file/watcher.go +++ b/config/source/file/watcher.go @@ -5,8 +5,8 @@ package file import ( "os" + "github.com/asim/go-micro/v3/config/source" "github.com/fsnotify/fsnotify" - "github.com/micro/go-micro/v2/config/source" ) type watcher struct { diff --git a/config/source/file/watcher_linux.go b/config/source/file/watcher_linux.go index 13efbde5e3..fcf56b1ca2 100644 --- a/config/source/file/watcher_linux.go +++ b/config/source/file/watcher_linux.go @@ -5,8 +5,8 @@ package file import ( "os" + "github.com/asim/go-micro/v3/config/source" "github.com/fsnotify/fsnotify" - "github.com/micro/go-micro/v2/config/source" ) type watcher struct { diff --git a/config/source/flag/flag.go b/config/source/flag/flag.go index 3cd3dcf6cc..747a32fb28 100644 --- a/config/source/flag/flag.go +++ b/config/source/flag/flag.go @@ -3,8 +3,8 @@ package flag import ( "errors" "flag" + "github.com/asim/go-micro/v3/config/source" "github.com/imdario/mergo" - "github.com/micro/go-micro/v2/config/source" "strings" "time" ) diff --git a/config/source/flag/options.go b/config/source/flag/options.go index 85ccfd83b5..1bedce97a3 100644 --- a/config/source/flag/options.go +++ b/config/source/flag/options.go @@ -3,7 +3,7 @@ package flag import ( "context" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) type includeUnsetKey struct{} diff --git a/config/source/memory/memory.go b/config/source/memory/memory.go index 0bb78d233e..91e2295687 100644 --- a/config/source/memory/memory.go +++ b/config/source/memory/memory.go @@ -5,8 +5,8 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/config/source" "github.com/google/uuid" - "github.com/micro/go-micro/v2/config/source" ) type memory struct { diff --git a/config/source/memory/options.go b/config/source/memory/options.go index d7ec63095c..7de41e25d7 100644 --- a/config/source/memory/options.go +++ b/config/source/memory/options.go @@ -3,7 +3,7 @@ package memory import ( "context" - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) type changeSetKey struct{} diff --git a/config/source/memory/watcher.go b/config/source/memory/watcher.go index c04714b18e..db4611d6d9 100644 --- a/config/source/memory/watcher.go +++ b/config/source/memory/watcher.go @@ -1,7 +1,7 @@ package memory import ( - "github.com/micro/go-micro/v2/config/source" + "github.com/asim/go-micro/v3/config/source" ) type watcher struct { diff --git a/config/source/options.go b/config/source/options.go index cd694a779d..881a896c39 100644 --- a/config/source/options.go +++ b/config/source/options.go @@ -3,9 +3,9 @@ package source import ( "context" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/config/encoder" - "github.com/micro/go-micro/v2/config/encoder/json" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/config/encoder" + "github.com/asim/go-micro/v3/config/encoder/json" ) type Options struct { diff --git a/config/value.go b/config/value.go index 90710bad16..55dc280492 100644 --- a/config/value.go +++ b/config/value.go @@ -3,7 +3,7 @@ package config import ( "time" - "github.com/micro/go-micro/v2/config/reader" + "github.com/asim/go-micro/v3/config/reader" ) type value struct{} diff --git a/debug/handler/debug.go b/debug/handler/debug.go index 3aef950cae..94a86a5ff3 100644 --- a/debug/handler/debug.go +++ b/debug/handler/debug.go @@ -5,12 +5,12 @@ import ( "context" "time" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/debug/log" - proto "github.com/micro/go-micro/v2/debug/proto" - "github.com/micro/go-micro/v2/debug/stats" - "github.com/micro/go-micro/v2/debug/trace" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/debug/log" + proto "github.com/asim/go-micro/v3/debug/proto" + "github.com/asim/go-micro/v3/debug/stats" + "github.com/asim/go-micro/v3/debug/trace" + "github.com/asim/go-micro/v3/server" ) // NewHandler returns an instance of the Debug Handler diff --git a/debug/log/memory/memory.go b/debug/log/memory/memory.go index b168addd98..835f4056cf 100644 --- a/debug/log/memory/memory.go +++ b/debug/log/memory/memory.go @@ -4,8 +4,8 @@ package memory import ( "fmt" - "github.com/micro/go-micro/v2/debug/log" - "github.com/micro/go-micro/v2/util/ring" + "github.com/asim/go-micro/v3/debug/log" + "github.com/asim/go-micro/v3/util/ring" ) var ( diff --git a/debug/log/memory/memory_test.go b/debug/log/memory/memory_test.go index 8fc861ac56..c014ef768e 100644 --- a/debug/log/memory/memory_test.go +++ b/debug/log/memory/memory_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/micro/go-micro/v2/debug/log" + "github.com/asim/go-micro/v3/debug/log" ) func TestLogger(t *testing.T) { diff --git a/debug/log/memory/stream.go b/debug/log/memory/stream.go index ae6493aefe..38e6dcd31c 100644 --- a/debug/log/memory/stream.go +++ b/debug/log/memory/stream.go @@ -1,7 +1,7 @@ package memory import ( - "github.com/micro/go-micro/v2/debug/log" + "github.com/asim/go-micro/v3/debug/log" ) type logStream struct { diff --git a/debug/log/noop/noop.go b/debug/log/noop/noop.go index 1cbeba6a26..dbabf8c362 100644 --- a/debug/log/noop/noop.go +++ b/debug/log/noop/noop.go @@ -1,7 +1,7 @@ package noop import ( - "github.com/micro/go-micro/v2/debug/log" + "github.com/asim/go-micro/v3/debug/log" ) type noop struct{} diff --git a/debug/log/os.go b/debug/log/os.go index 022481c293..70f926ce47 100644 --- a/debug/log/os.go +++ b/debug/log/os.go @@ -3,8 +3,8 @@ package log import ( "sync" + "github.com/asim/go-micro/v3/util/ring" "github.com/google/uuid" - "github.com/micro/go-micro/v2/util/ring" ) // Should stream from OS diff --git a/debug/profile/http/http.go b/debug/profile/http/http.go index a21bc2ebd5..39d73ad426 100644 --- a/debug/profile/http/http.go +++ b/debug/profile/http/http.go @@ -7,7 +7,7 @@ import ( "net/http/pprof" "sync" - "github.com/micro/go-micro/v2/debug/profile" + "github.com/asim/go-micro/v3/debug/profile" ) type httpProfile struct { diff --git a/debug/profile/pprof/pprof.go b/debug/profile/pprof/pprof.go index 42761efe2c..f424b422c0 100644 --- a/debug/profile/pprof/pprof.go +++ b/debug/profile/pprof/pprof.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/debug/profile" + "github.com/asim/go-micro/v3/debug/profile" ) type profiler struct { diff --git a/debug/proto/debug.pb.micro.go b/debug/proto/debug.pb.micro.go index fabbcf6cf1..2ede91cacb 100644 --- a/debug/proto/debug.pb.micro.go +++ b/debug/proto/debug.pb.micro.go @@ -11,9 +11,9 @@ import ( import ( context "context" - api "github.com/micro/go-micro/v2/api" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + api "github.com/asim/go-micro/v3/api" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/debug/stats/default.go b/debug/stats/default.go index d36dfd0f9e..99f2958607 100644 --- a/debug/stats/default.go +++ b/debug/stats/default.go @@ -5,7 +5,7 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/util/ring" + "github.com/asim/go-micro/v3/util/ring" ) type stats struct { diff --git a/debug/trace/default.go b/debug/trace/default.go index 3b72a3f754..fdc83bf664 100644 --- a/debug/trace/default.go +++ b/debug/trace/default.go @@ -4,8 +4,8 @@ import ( "context" "time" + "github.com/asim/go-micro/v3/util/ring" "github.com/google/uuid" - "github.com/micro/go-micro/v2/util/ring" ) type memTracer struct { diff --git a/debug/trace/trace.go b/debug/trace/trace.go index 52cf2c9530..645babddf9 100644 --- a/debug/trace/trace.go +++ b/debug/trace/trace.go @@ -5,7 +5,7 @@ import ( "context" "time" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3/metadata" ) // Tracer is an interface for distributed tracing diff --git a/event.go b/event.go index c55e37bb7b..36fc439ffd 100644 --- a/event.go +++ b/event.go @@ -3,7 +3,7 @@ package micro import ( "context" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3/client" ) type event struct { diff --git a/examples/api/api/api.go b/examples/api/api/api.go index 4432b6536b..145e6f9c12 100644 --- a/examples/api/api/api.go +++ b/examples/api/api/api.go @@ -7,9 +7,9 @@ import ( "strings" proto "github.com/micro/go-micro/examples/api/api/proto" - "github.com/micro/go-micro/v2" - api "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3" + api "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/errors" ) type Example struct{} diff --git a/examples/api/api/proto/api.micro.go b/examples/api/api/proto/api.micro.go index 4799c0e66d..d1919525fe 100644 --- a/examples/api/api/proto/api.micro.go +++ b/examples/api/api/proto/api.micro.go @@ -6,14 +6,14 @@ package api import ( fmt "fmt" proto "github.com/golang/protobuf/proto" - proto1 "github.com/micro/go-micro/v2/api/proto" + proto1 "github.com/asim/go-micro/v3/api/proto" math "math" ) import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/api/api/proto/api.pb.go b/examples/api/api/proto/api.pb.go index 2b5260ad85..b87fc55145 100644 --- a/examples/api/api/proto/api.pb.go +++ b/examples/api/api/proto/api.pb.go @@ -6,7 +6,7 @@ package api import ( fmt "fmt" proto "github.com/golang/protobuf/proto" - _ "github.com/micro/go-micro/v2/api/proto" + _ "github.com/asim/go-micro/v3/api/proto" math "math" ) diff --git a/examples/api/api/proto/api.proto b/examples/api/api/proto/api.proto index 701eec34fc..0c68b6c3fd 100644 --- a/examples/api/api/proto/api.proto +++ b/examples/api/api/proto/api.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -import "github.com/micro/go-micro/v2/api/proto/api.proto"; +import "github.com/asim/go-micro/v3/api/proto/api.proto"; service Example { rpc Call(go.api.Request) returns(go.api.Response) {}; diff --git a/examples/api/meta/meta.go b/examples/api/meta/meta.go index 9df8a02c94..5ea9526355 100644 --- a/examples/api/meta/meta.go +++ b/examples/api/meta/meta.go @@ -4,11 +4,11 @@ import ( "log" proto "github.com/micro/go-micro/examples/api/rpc/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/api" - rapi "github.com/micro/go-micro/v2/api/handler/api" - "github.com/micro/go-micro/v2/api/handler/rpc" - "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/api" + rapi "github.com/asim/go-micro/v3/api/handler/api" + "github.com/asim/go-micro/v3/api/handler/rpc" + "github.com/asim/go-micro/v3/errors" "context" ) diff --git a/examples/api/meta/proto/api.micro.go b/examples/api/meta/proto/api.micro.go index a0ac7dea6c..d494c0610e 100644 --- a/examples/api/meta/proto/api.micro.go +++ b/examples/api/meta/proto/api.micro.go @@ -21,8 +21,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/api/proxy/proxy.go b/examples/api/proxy/proxy.go index cb527f8a3d..da231eed30 100644 --- a/examples/api/proxy/proxy.go +++ b/examples/api/proxy/proxy.go @@ -5,8 +5,8 @@ import ( "log" "net/http" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/web" ) // exampleCall will handle /example/call diff --git a/examples/api/rpc/proto/api.micro.go b/examples/api/rpc/proto/api.micro.go index e421b1406e..21f65743ab 100644 --- a/examples/api/rpc/proto/api.micro.go +++ b/examples/api/rpc/proto/api.micro.go @@ -21,8 +21,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/api/rpc/rpc.go b/examples/api/rpc/rpc.go index d2a03b5654..e03f136c8f 100644 --- a/examples/api/rpc/rpc.go +++ b/examples/api/rpc/rpc.go @@ -4,8 +4,8 @@ import ( "log" proto "github.com/micro/go-micro/examples/api/rpc/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/errors" "context" ) diff --git a/examples/booking/api/hotel/main.go b/examples/booking/api/hotel/main.go index caa7644267..162f553903 100644 --- a/examples/booking/api/hotel/main.go +++ b/examples/booking/api/hotel/main.go @@ -18,10 +18,10 @@ import ( "github.com/micro/go-micro/examples/booking/srv/geo/proto" "github.com/micro/go-micro/examples/booking/srv/profile/proto" "github.com/micro/go-micro/examples/booking/srv/rate/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/client" - merr "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/client" + merr "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/metadata" ) const ( diff --git a/examples/booking/api/hotel/proto/hotel.micro.go b/examples/booking/api/hotel/proto/hotel.micro.go index fd99c70c31..b9c16dcecb 100644 --- a/examples/booking/api/hotel/proto/hotel.micro.go +++ b/examples/booking/api/hotel/proto/hotel.micro.go @@ -21,8 +21,8 @@ import _ "github.com/micro/go-micro/examples/booking/srv/rate/proto" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/booking/srv/auth/main.go b/examples/booking/srv/auth/main.go index aa519af05c..4fe76ea83a 100644 --- a/examples/booking/srv/auth/main.go +++ b/examples/booking/srv/auth/main.go @@ -11,8 +11,8 @@ import ( "context" "golang.org/x/net/trace" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" ) type Auth struct { diff --git a/examples/booking/srv/auth/proto/auth.micro.go b/examples/booking/srv/auth/proto/auth.micro.go index 504521a347..4dc18caf39 100644 --- a/examples/booking/srv/auth/proto/auth.micro.go +++ b/examples/booking/srv/auth/proto/auth.micro.go @@ -20,8 +20,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/booking/srv/geo/main.go b/examples/booking/srv/geo/main.go index 2aa7d87d4a..0963abdd8f 100644 --- a/examples/booking/srv/geo/main.go +++ b/examples/booking/srv/geo/main.go @@ -11,8 +11,8 @@ import ( "context" "golang.org/x/net/trace" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" ) const ( diff --git a/examples/booking/srv/geo/proto/geo.micro.go b/examples/booking/srv/geo/proto/geo.micro.go index b269c81499..b111b27760 100644 --- a/examples/booking/srv/geo/proto/geo.micro.go +++ b/examples/booking/srv/geo/proto/geo.micro.go @@ -19,8 +19,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/booking/srv/profile/main.go b/examples/booking/srv/profile/main.go index 24c4a02a7d..770e8c768e 100644 --- a/examples/booking/srv/profile/main.go +++ b/examples/booking/srv/profile/main.go @@ -10,8 +10,8 @@ import ( "context" "golang.org/x/net/trace" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" ) type Profile struct { diff --git a/examples/booking/srv/profile/proto/profile.micro.go b/examples/booking/srv/profile/proto/profile.micro.go index 058aa49323..782eb71f00 100644 --- a/examples/booking/srv/profile/proto/profile.micro.go +++ b/examples/booking/srv/profile/proto/profile.micro.go @@ -22,8 +22,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/booking/srv/rate/main.go b/examples/booking/srv/rate/main.go index f608696c7a..858f22954a 100644 --- a/examples/booking/srv/rate/main.go +++ b/examples/booking/srv/rate/main.go @@ -10,8 +10,8 @@ import ( "context" "golang.org/x/net/trace" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" ) type stay struct { diff --git a/examples/booking/srv/rate/proto/rate.micro.go b/examples/booking/srv/rate/proto/rate.micro.go index b9f54ce145..52124f79ce 100644 --- a/examples/booking/srv/rate/proto/rate.micro.go +++ b/examples/booking/srv/rate/proto/rate.micro.go @@ -21,8 +21,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/broker/consumer/consumer.go b/examples/broker/consumer/consumer.go index 31b12e8cb0..95ed6287e6 100644 --- a/examples/broker/consumer/consumer.go +++ b/examples/broker/consumer/consumer.go @@ -4,8 +4,8 @@ import ( "fmt" "log" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/config/cmd" // To enable rabbitmq plugin uncomment //_ "github.com/micro/go-plugins/broker/rabbitmq" ) diff --git a/examples/broker/main.go b/examples/broker/main.go index 4308451d88..8e40be3950 100644 --- a/examples/broker/main.go +++ b/examples/broker/main.go @@ -5,8 +5,8 @@ import ( "log" "time" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/config/cmd" ) var ( diff --git a/examples/broker/producer/producer.go b/examples/broker/producer/producer.go index 6cf78bd21d..7180e900ec 100644 --- a/examples/broker/producer/producer.go +++ b/examples/broker/producer/producer.go @@ -5,8 +5,8 @@ import ( "log" "time" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/config/cmd" // To enable rabbitmq plugin uncomment //_ "github.com/micro/go-plugins/broker/rabbitmq" ) diff --git a/examples/client/codegen/README.md b/examples/client/codegen/README.md index 03b20fd5b9..fa9714543e 100644 --- a/examples/client/codegen/README.md +++ b/examples/client/codegen/README.md @@ -133,7 +133,7 @@ import ( "fmt" "context" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3/client" hello "path/to/hello/proto" ) diff --git a/examples/client/codegen/codegen.go b/examples/client/codegen/codegen.go index f4067793d9..c513ab2472 100644 --- a/examples/client/codegen/codegen.go +++ b/examples/client/codegen/codegen.go @@ -5,7 +5,7 @@ import ( "context" example "github.com/micro/go-micro/examples/server/proto/example" - "github.com/micro/go-micro/v2/config/cmd" + "github.com/asim/go-micro/v3/config/cmd" ) var ( diff --git a/examples/client/dc_filter/dc_filter.go b/examples/client/dc_filter/dc_filter.go index 075caf2e09..5db0b08d96 100644 --- a/examples/client/dc_filter/dc_filter.go +++ b/examples/client/dc_filter/dc_filter.go @@ -6,11 +6,11 @@ import ( "math/rand" "time" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/client/selector" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/client/selector" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" example "github.com/micro/go-micro/examples/server/proto/example" ) diff --git a/examples/client/dc_selector/dc_selector.go b/examples/client/dc_selector/dc_selector.go index 32c52f1f27..ca9c58306e 100644 --- a/examples/client/dc_selector/dc_selector.go +++ b/examples/client/dc_selector/dc_selector.go @@ -7,10 +7,10 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/client/selector" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/client/selector" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/registry" example "github.com/micro/go-micro/examples/server/proto/example" ) diff --git a/examples/client/main.go b/examples/client/main.go index a0e5a3ab26..508853b44c 100644 --- a/examples/client/main.go +++ b/examples/client/main.go @@ -5,9 +5,9 @@ import ( "context" example "github.com/micro/go-micro/examples/server/proto/example" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/metadata" ) // publishes a message diff --git a/examples/client/pub/pub.go b/examples/client/pub/pub.go index ffa430ecf0..4d2925af35 100644 --- a/examples/client/pub/pub.go +++ b/examples/client/pub/pub.go @@ -5,7 +5,7 @@ import ( "context" example "github.com/micro/go-micro/examples/server/proto/example" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) // publishes a message diff --git a/examples/client/selector/selector.go b/examples/client/selector/selector.go index 934a1a35ef..94d6c74735 100644 --- a/examples/client/selector/selector.go +++ b/examples/client/selector/selector.go @@ -7,10 +7,10 @@ import ( "time" example "github.com/micro/go-micro/examples/server/proto/example" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/client/selector" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/client/selector" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/registry" ) func init() { diff --git a/examples/client/wrapper/wrapper.go b/examples/client/wrapper/wrapper.go index 7ee814209d..edbfdaf240 100644 --- a/examples/client/wrapper/wrapper.go +++ b/examples/client/wrapper/wrapper.go @@ -6,10 +6,10 @@ import ( "context" example "github.com/micro/go-micro/examples/server/proto/example" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" ) // wrapper example code diff --git a/examples/command/main.go b/examples/command/main.go index 88acef6449..07afa423c7 100644 --- a/examples/command/main.go +++ b/examples/command/main.go @@ -5,9 +5,9 @@ import ( "strings" "context" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" - proto "github.com/micro/go-micro/v2/agent/proto" + proto "github.com/asim/go-micro/v3/agent/proto" ) type Command struct{} diff --git a/examples/config/file/main.go b/examples/config/file/main.go index ffaa122144..4d574cf00e 100644 --- a/examples/config/file/main.go +++ b/examples/config/file/main.go @@ -3,8 +3,8 @@ package main import ( "fmt" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/source/file" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/config/source/file" ) func main() { diff --git a/examples/config/grpc/client/main.go b/examples/config/grpc/client/main.go index 99ecb596f8..11a50cdad2 100644 --- a/examples/config/grpc/client/main.go +++ b/examples/config/grpc/client/main.go @@ -1,8 +1,8 @@ package main import ( - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/util/log" grpcConfig "github.com/micro/go-plugins/config/source/grpc/v2" ) diff --git a/examples/config/grpc/srv/main.go b/examples/config/grpc/srv/main.go index a000b95473..2d80c38c0c 100644 --- a/examples/config/grpc/srv/main.go +++ b/examples/config/grpc/srv/main.go @@ -9,9 +9,9 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/source/file" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/config/source/file" + "github.com/asim/go-micro/v3/util/log" proto "github.com/micro/go-plugins/config/source/grpc/v2/proto" grpc "google.golang.org/grpc" ) diff --git a/examples/config/modify/modify.go b/examples/config/modify/modify.go index a795097214..a57457bde2 100644 --- a/examples/config/modify/modify.go +++ b/examples/config/modify/modify.go @@ -4,10 +4,10 @@ import ( "fmt" "io/ioutil" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/encoder/toml" - "github.com/micro/go-micro/v2/config/source" - "github.com/micro/go-micro/v2/config/source/file" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/config/encoder/toml" + "github.com/asim/go-micro/v3/config/source" + "github.com/asim/go-micro/v3/config/source/file" ) func main() { diff --git a/examples/event/srv/main.go b/examples/event/srv/main.go index 99769dd851..0c902b0f2f 100644 --- a/examples/event/srv/main.go +++ b/examples/event/srv/main.go @@ -3,9 +3,9 @@ package main import ( "context" - "github.com/micro/go-micro/v2" - proto "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + proto "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/util/log" ) // All methods of Event will be executed when a message is received diff --git a/examples/filter/main.go b/examples/filter/main.go index f15355976b..a482071a2e 100644 --- a/examples/filter/main.go +++ b/examples/filter/main.go @@ -6,7 +6,7 @@ import ( "github.com/micro/go-micro/examples/filter/version" proto "github.com/micro/go-micro/examples/service/proto" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) func main() { diff --git a/examples/filter/version/version.go b/examples/filter/version/version.go index 4397a17ef7..af8acfd516 100644 --- a/examples/filter/version/version.go +++ b/examples/filter/version/version.go @@ -2,9 +2,9 @@ package version import ( - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/client/selector" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/client/selector" + "github.com/asim/go-micro/v3/registry" ) // Filter will filter the version of the service diff --git a/examples/flags/main.go b/examples/flags/main.go index 71a51b9188..53d85748d7 100644 --- a/examples/flags/main.go +++ b/examples/flags/main.go @@ -5,7 +5,7 @@ import ( "os" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) func main() { diff --git a/examples/form/api/main.go b/examples/form/api/main.go index f596ac847a..0c59d9eba4 100644 --- a/examples/form/api/main.go +++ b/examples/form/api/main.go @@ -9,9 +9,9 @@ import ( "strings" proto "github.com/micro/go-micro/examples/form/api/proto" - "github.com/micro/go-micro/v2" - api "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + api "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/util/log" ) type Form struct{} diff --git a/examples/form/api/proto/api.micro.go b/examples/form/api/proto/api.micro.go index dab0e4474e..a7cf37805d 100644 --- a/examples/form/api/proto/api.micro.go +++ b/examples/form/api/proto/api.micro.go @@ -6,14 +6,14 @@ package api import ( fmt "fmt" proto "github.com/golang/protobuf/proto" - proto1 "github.com/micro/go-micro/v2/api/proto" + proto1 "github.com/asim/go-micro/v3/api/proto" math "math" ) import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/form/api/proto/api.pb.go b/examples/form/api/proto/api.pb.go index 7f750af82b..c61e6143a0 100644 --- a/examples/form/api/proto/api.pb.go +++ b/examples/form/api/proto/api.pb.go @@ -6,7 +6,7 @@ package api import ( fmt "fmt" proto "github.com/golang/protobuf/proto" - _ "github.com/micro/go-micro/v2/api/proto" + _ "github.com/asim/go-micro/v3/api/proto" math "math" ) diff --git a/examples/form/api/proto/api.proto b/examples/form/api/proto/api.proto index 037a563a70..9c7a564dbf 100644 --- a/examples/form/api/proto/api.proto +++ b/examples/form/api/proto/api.proto @@ -1,6 +1,6 @@ syntax = "proto3"; -import "github.com/micro/go-micro/v2/api/proto/api.proto"; +import "github.com/asim/go-micro/v3/api/proto/api.proto"; service Form { // regular form diff --git a/examples/form/web/main.go b/examples/form/web/main.go index 216509eb16..221bb289a3 100644 --- a/examples/form/web/main.go +++ b/examples/form/web/main.go @@ -4,7 +4,7 @@ import ( "fmt" "net/http" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/web" ) func index(w http.ResponseWriter, r *http.Request) { diff --git a/examples/function/main.go b/examples/function/main.go index ce80118c81..d1638f98d2 100644 --- a/examples/function/main.go +++ b/examples/function/main.go @@ -4,7 +4,7 @@ import ( "context" proto "github.com/micro/go-micro/examples/function/proto" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) type Greeter struct{} diff --git a/examples/function/proto/greeter.micro.go b/examples/function/proto/greeter.micro.go index 49fc15322b..84fff693d5 100644 --- a/examples/function/proto/greeter.micro.go +++ b/examples/function/proto/greeter.micro.go @@ -19,8 +19,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/getip/main.go b/examples/getip/main.go index d676289ed8..92306e13f6 100644 --- a/examples/getip/main.go +++ b/examples/getip/main.go @@ -5,8 +5,8 @@ import ( "fmt" proto "github.com/micro/go-micro/examples/service/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" ) type Greeter struct{} diff --git a/examples/getip/proto/greeter.micro.go b/examples/getip/proto/greeter.micro.go index 1e46869cf2..d60f8827ff 100644 --- a/examples/getip/proto/greeter.micro.go +++ b/examples/getip/proto/greeter.micro.go @@ -19,8 +19,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/go.mod b/examples/go.mod index 604ac0593c..eff520a07b 100644 --- a/examples/go.mod +++ b/examples/go.mod @@ -27,7 +27,7 @@ require ( github.com/grpc-ecosystem/grpc-gateway v1.12.1 github.com/hailocab/go-geoindex v0.0.0-20160127134810-64631bfe9711 github.com/micro/cli/v2 v2.1.2 - github.com/micro/go-micro/v2 v2.4.0 + github.com/asim/go-micro/v3 v2.4.0 github.com/micro/go-plugins/broker/grpc/v2 v2.3.0 github.com/micro/go-plugins/client/selector/static/v2 v2.3.0 github.com/micro/go-plugins/config/source/configmap/v2 v2.3.0 diff --git a/examples/go.sum b/examples/go.sum index b915af1e17..334163dc80 100644 --- a/examples/go.sum +++ b/examples/go.sum @@ -338,10 +338,10 @@ github.com/mholt/certmagic v0.9.3 h1:RmzuNJ5mpFplDbyS41z+gGgE/py24IX6m0nHZ0yNTQU github.com/mholt/certmagic v0.9.3/go.mod h1:nu8jbsbtwK4205EDH/ZUMTKsfYpJA1Q7MKXHfgTihNw= github.com/micro/cli/v2 v2.1.2 h1:43J1lChg/rZCC1rvdqZNFSQDrGT7qfMrtp6/ztpIkEM= github.com/micro/cli/v2 v2.1.2/go.mod h1:EguNh6DAoWKm9nmk+k/Rg0H3lQnDxqzu5x5srOtGtYg= -github.com/micro/go-micro/v2 v2.3.0/go.mod h1:GR69d1AXMg/WjMNf/7K1VO6hCBJDIpqCqnVYNTV6M5w= -github.com/micro/go-micro/v2 v2.3.1-0.20200331090613-76ade7efd9b8/go.mod h1:lYuHYFPjY3QE9fdiy3F2awXcsXTdB68AwoY3RQ3dPN4= -github.com/micro/go-micro/v2 v2.4.0 h1:icFvqf8fof8bObqgDHGoiUCMuKwOCyWTGXaQjZDgEnE= -github.com/micro/go-micro/v2 v2.4.0/go.mod h1:lYuHYFPjY3QE9fdiy3F2awXcsXTdB68AwoY3RQ3dPN4= +github.com/asim/go-micro/v3 v2.3.0/go.mod h1:GR69d1AXMg/WjMNf/7K1VO6hCBJDIpqCqnVYNTV6M5w= +github.com/asim/go-micro/v3 v2.3.1-0.20200331090613-76ade7efd9b8/go.mod h1:lYuHYFPjY3QE9fdiy3F2awXcsXTdB68AwoY3RQ3dPN4= +github.com/asim/go-micro/v3 v2.4.0 h1:icFvqf8fof8bObqgDHGoiUCMuKwOCyWTGXaQjZDgEnE= +github.com/asim/go-micro/v3 v2.4.0/go.mod h1:lYuHYFPjY3QE9fdiy3F2awXcsXTdB68AwoY3RQ3dPN4= github.com/micro/go-plugins/broker/grpc/v2 v2.3.0 h1:ldKHjPBCKvW5ib1XIhfih7gEC+SCsoYXdWeW3MNZFzA= github.com/micro/go-plugins/broker/grpc/v2 v2.3.0/go.mod h1:EdJ+TxlDK6ak9eZlE4NKbDAzAhC3n8fL9hbdaGu7pK8= github.com/micro/go-plugins/client/selector/static/v2 v2.3.0 h1:h6+qRGATM88Jx8skCy7cgSlwckm7cikPJRClCUlHrFI= diff --git a/examples/graceful/main.go b/examples/graceful/main.go index 04f092fa37..85a35a5236 100644 --- a/examples/graceful/main.go +++ b/examples/graceful/main.go @@ -3,8 +3,8 @@ package main import ( "fmt" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/server" ) func main() { diff --git a/examples/greeter/api/api.go b/examples/greeter/api/api.go index 2d72693bad..2ae43d9984 100644 --- a/examples/greeter/api/api.go +++ b/examples/greeter/api/api.go @@ -6,9 +6,9 @@ import ( "strings" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" - api "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3" + api "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/errors" "context" ) diff --git a/examples/greeter/api/beego/beego.go b/examples/greeter/api/beego/beego.go index 60ea42a2a8..0ed50fb10b 100644 --- a/examples/greeter/api/beego/beego.go +++ b/examples/greeter/api/beego/beego.go @@ -8,8 +8,8 @@ import ( bctx "github.com/astaxie/beego/context" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/web" ) type Say struct{} diff --git a/examples/greeter/api/gin/gin.go b/examples/greeter/api/gin/gin.go index 7d33da2a5f..de7585849f 100644 --- a/examples/greeter/api/gin/gin.go +++ b/examples/greeter/api/gin/gin.go @@ -6,8 +6,8 @@ import ( "github.com/gin-gonic/gin" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/web" ) type Say struct{} diff --git a/examples/greeter/api/graphql/main.go b/examples/greeter/api/graphql/main.go index 7d0f3282db..a877d83b1f 100644 --- a/examples/greeter/api/graphql/main.go +++ b/examples/greeter/api/graphql/main.go @@ -4,9 +4,9 @@ import ( "github.com/99designs/gqlgen/handler" gql "github.com/micro/go-micro/examples/greeter/api/graphql/graphql" helloProto "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/util/log" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/util/log" + "github.com/asim/go-micro/v3/web" ) func main() { diff --git a/examples/greeter/api/rest/rest.go b/examples/greeter/api/rest/rest.go index a2414e27d8..ad27c7c6c3 100644 --- a/examples/greeter/api/rest/rest.go +++ b/examples/greeter/api/rest/rest.go @@ -7,8 +7,8 @@ import ( "github.com/emicklei/go-restful" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/web" ) type Say struct{} diff --git a/examples/greeter/api/rpc/proto/hello/hello.micro.go b/examples/greeter/api/rpc/proto/hello/hello.micro.go index 414f3bb29b..579a505392 100644 --- a/examples/greeter/api/rpc/proto/hello/hello.micro.go +++ b/examples/greeter/api/rpc/proto/hello/hello.micro.go @@ -19,8 +19,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/greeter/api/rpc/rpc.go b/examples/greeter/api/rpc/rpc.go index c709392d68..3752075b75 100644 --- a/examples/greeter/api/rpc/rpc.go +++ b/examples/greeter/api/rpc/rpc.go @@ -5,7 +5,7 @@ import ( proto "github.com/micro/go-micro/examples/greeter/api/rpc/proto/hello" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" "context" ) diff --git a/examples/greeter/cli/main.go b/examples/greeter/cli/main.go index 508d29f05b..98aa4b8002 100644 --- a/examples/greeter/cli/main.go +++ b/examples/greeter/cli/main.go @@ -5,7 +5,7 @@ import ( "fmt" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) func main() { diff --git a/examples/greeter/srv/main.go b/examples/greeter/srv/main.go index 30a838d201..45f0ae9d84 100644 --- a/examples/greeter/srv/main.go +++ b/examples/greeter/srv/main.go @@ -6,8 +6,8 @@ import ( "time" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/util/log" "google.golang.org/grpc" ) diff --git a/examples/greeter/srv/proto/hello/hello.pb.micro.go b/examples/greeter/srv/proto/hello/hello.pb.micro.go index 2444eb7c2d..da83559e9a 100644 --- a/examples/greeter/srv/proto/hello/hello.pb.micro.go +++ b/examples/greeter/srv/proto/hello/hello.pb.micro.go @@ -11,8 +11,8 @@ import ( import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/greeter/web/web.go b/examples/greeter/web/web.go index cde0f28b14..80bff9635b 100644 --- a/examples/greeter/web/web.go +++ b/examples/greeter/web/web.go @@ -6,8 +6,8 @@ import ( "net/http" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/web" "context" ) diff --git a/examples/heartbeat/main.go b/examples/heartbeat/main.go index 2073d13d64..caf71df972 100644 --- a/examples/heartbeat/main.go +++ b/examples/heartbeat/main.go @@ -3,8 +3,8 @@ package main import ( "time" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/util/log" ) func main() { diff --git a/examples/helloworld/main.go b/examples/helloworld/main.go index 5b5ec50104..2ebfc6a6da 100644 --- a/examples/helloworld/main.go +++ b/examples/helloworld/main.go @@ -5,7 +5,7 @@ import ( "log" pb "github.com/micro/go-micro/examples/helloworld/proto" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) type Greeter struct{} diff --git a/examples/helloworld/proto/greeter.pb.micro.go b/examples/helloworld/proto/greeter.pb.micro.go index 13ab7a85e5..f931d4be20 100644 --- a/examples/helloworld/proto/greeter.pb.micro.go +++ b/examples/helloworld/proto/greeter.pb.micro.go @@ -11,8 +11,8 @@ import ( import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/kubernetes/README.md b/examples/kubernetes/README.md index 7a057209e3..801fc7d561 100644 --- a/examples/kubernetes/README.md +++ b/examples/kubernetes/README.md @@ -54,7 +54,7 @@ Write a service as you would any other [go-micro](https://github.com/micro/go-mi ```go import ( - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" k8s "github.com/micro/go-micro/examples/kubernetes/go/micro" ) @@ -137,7 +137,7 @@ Write a web service as you would any other [go-micro/web](https://github.com/mic import ( "net/http" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/web" k8s "github.com/micro/go-micro/examples/kubernetes/go/web" ) diff --git a/examples/kubernetes/cmd/health/main.go b/examples/kubernetes/cmd/health/main.go index c2f8bbb882..1e69b75e10 100644 --- a/examples/kubernetes/cmd/health/main.go +++ b/examples/kubernetes/cmd/health/main.go @@ -7,11 +7,11 @@ import ( "os" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2/client" - gcli "github.com/micro/go-micro/v2/client/grpc" - "github.com/micro/go-micro/v2/config/cmd" - proto "github.com/micro/go-micro/v2/debug/service/proto" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/client" + gcli "github.com/asim/go-micro/v3/client/grpc" + "github.com/asim/go-micro/v3/config/cmd" + proto "github.com/asim/go-micro/v3/debug/service/proto" + "github.com/asim/go-micro/v3/util/log" _ "github.com/micro/go-plugins/registry/kubernetes/v2" ) diff --git a/examples/kubernetes/cmd/micro/main.go b/examples/kubernetes/cmd/micro/main.go index 67752ddb51..5d8794740d 100644 --- a/examples/kubernetes/cmd/micro/main.go +++ b/examples/kubernetes/cmd/micro/main.go @@ -3,12 +3,12 @@ package main import ( "os" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/client" - cli "github.com/micro/go-micro/v2/client/grpc" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/server" - srv "github.com/micro/go-micro/v2/server/grpc" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/client" + cli "github.com/asim/go-micro/v3/client/grpc" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/server" + srv "github.com/asim/go-micro/v3/server/grpc" bkr "github.com/micro/go-plugins/broker/grpc/v2" _ "github.com/micro/go-plugins/registry/kubernetes/v2" @@ -18,7 +18,7 @@ import ( _ "github.com/micro/go-plugins/client/selector/static/v2" // disable namespace by default - _ "github.com/micro/go-micro/v2/api" + _ "github.com/asim/go-micro/v3/api" ) func main() { diff --git a/examples/kubernetes/cmd/probe/main.go b/examples/kubernetes/cmd/probe/main.go index 069505fb31..01d7fe9f87 100644 --- a/examples/kubernetes/cmd/probe/main.go +++ b/examples/kubernetes/cmd/probe/main.go @@ -7,11 +7,11 @@ import ( "time" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2/client" - gcli "github.com/micro/go-micro/v2/client/grpc" - "github.com/micro/go-micro/v2/config/cmd" - proto "github.com/micro/go-micro/v2/debug/service/proto" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/client" + gcli "github.com/asim/go-micro/v3/client/grpc" + "github.com/asim/go-micro/v3/config/cmd" + proto "github.com/asim/go-micro/v3/debug/service/proto" + "github.com/asim/go-micro/v3/util/log" _ "github.com/micro/go-plugins/registry/kubernetes/v2" ) diff --git a/examples/kubernetes/examples/greeter/main.go b/examples/kubernetes/examples/greeter/main.go index 7da5ee4edb..fe8020c553 100644 --- a/examples/kubernetes/examples/greeter/main.go +++ b/examples/kubernetes/examples/greeter/main.go @@ -6,7 +6,7 @@ import ( hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" k8s "github.com/micro/go-micro/examples/kubernetes/go/micro" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) type Say struct{} diff --git a/examples/kubernetes/examples/greeter/proto/hello/hello.pb.micro.go b/examples/kubernetes/examples/greeter/proto/hello/hello.pb.micro.go index b22eed6473..4a0559f976 100644 --- a/examples/kubernetes/examples/greeter/proto/hello/hello.pb.micro.go +++ b/examples/kubernetes/examples/greeter/proto/hello/hello.pb.micro.go @@ -11,8 +11,8 @@ import ( import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/kubernetes/go/config/config.go b/examples/kubernetes/go/config/config.go index c0cf3e383a..a7c164f487 100644 --- a/examples/kubernetes/go/config/config.go +++ b/examples/kubernetes/go/config/config.go @@ -2,8 +2,8 @@ package config import ( - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/config/source/env" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/config/source/env" "github.com/micro/go-plugins/config/source/configmap/v2" ) diff --git a/examples/kubernetes/go/micro/micro.go b/examples/kubernetes/go/micro/micro.go index 6488293e2a..47a0e473c6 100644 --- a/examples/kubernetes/go/micro/micro.go +++ b/examples/kubernetes/go/micro/micro.go @@ -2,7 +2,7 @@ package micro import ( - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" "github.com/micro/go-plugins/registry/kubernetes/v2" // static selector offloads load balancing to k8s services diff --git a/examples/kubernetes/go/web/web.go b/examples/kubernetes/go/web/web.go index b9ffdfa7bf..0e5f1e685c 100644 --- a/examples/kubernetes/go/web/web.go +++ b/examples/kubernetes/go/web/web.go @@ -1,8 +1,8 @@ package web import ( - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/web" "github.com/micro/go-plugins/registry/kubernetes/v2" // static selector offloads load balancing to k8s services // enable with MICRO_SELECTOR=static or --selector=static diff --git a/examples/metadata/cli/main.go b/examples/metadata/cli/main.go index 387da3a6cc..1382988126 100644 --- a/examples/metadata/cli/main.go +++ b/examples/metadata/cli/main.go @@ -4,8 +4,8 @@ import ( "fmt" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" "context" ) diff --git a/examples/metadata/srv/main.go b/examples/metadata/srv/main.go index 1f72d52f4b..e03e38a9d1 100644 --- a/examples/metadata/srv/main.go +++ b/examples/metadata/srv/main.go @@ -6,8 +6,8 @@ import ( "time" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" "context" ) diff --git a/examples/mocking/main.go b/examples/mocking/main.go index 936bec99ec..988dce2e29 100644 --- a/examples/mocking/main.go +++ b/examples/mocking/main.go @@ -7,7 +7,7 @@ import ( "github.com/micro/cli/v2" proto "github.com/micro/go-micro/examples/helloworld/proto" "github.com/micro/go-micro/examples/mocking/mock" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) func main() { diff --git a/examples/mocking/mock/mock.go b/examples/mocking/mock/mock.go index bad79262ee..76a0506ca3 100644 --- a/examples/mocking/mock/mock.go +++ b/examples/mocking/mock/mock.go @@ -4,7 +4,7 @@ import ( "context" proto "github.com/micro/go-micro/examples/helloworld/proto" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3/client" ) type mockGreeterService struct { diff --git a/examples/noproto/client/main.go b/examples/noproto/client/main.go index 370c1885d4..952710b9a0 100644 --- a/examples/noproto/client/main.go +++ b/examples/noproto/client/main.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/client" ) func main() { diff --git a/examples/noproto/main.go b/examples/noproto/main.go index d8093de3dd..69d91ec858 100644 --- a/examples/noproto/main.go +++ b/examples/noproto/main.go @@ -3,7 +3,7 @@ package main import ( "context" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) type Greeter struct{} diff --git a/examples/options/README.md b/examples/options/README.md index e21c989c5e..9877c6c96a 100644 --- a/examples/options/README.md +++ b/examples/options/README.md @@ -26,7 +26,7 @@ func Name(n string) Option { Here's an example at the top level ``` -import "github.com/micro/go-micro/v2" +import "github.com/asim/go-micro/v3" service := micro.NewService( diff --git a/examples/plugins/README.md b/examples/plugins/README.md index d895844bb6..71ce7393ce 100644 --- a/examples/plugins/README.md +++ b/examples/plugins/README.md @@ -55,7 +55,7 @@ Plugins can be added to go-micro in the following ways. By doing so they'll be a ```go import ( - "github.com/micro/go-micro/v2/config/cmd" + "github.com/asim/go-micro/v3/config/cmd" _ "github.com/micro/go-plugins/broker/rabbitmq" _ "github.com/micro/go-plugins/registry/kubernetes" _ "github.com/micro/go-plugins/transport/nats" @@ -71,7 +71,7 @@ The same is achieved when calling ```service.Init``` ```go import ( - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" _ "github.com/micro/go-plugins/broker/rabbitmq" _ "github.com/micro/go-plugins/registry/kubernetes" _ "github.com/micro/go-plugins/transport/nats" @@ -102,7 +102,7 @@ CLI Flags provide a simple way to initialise plugins but you can do the same you ```go import ( - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" "github.com/micro/go-plugins/registry/kubernetes" ) diff --git a/examples/proxy/go/http_server.go b/examples/proxy/go/http_server.go index 9bcdfdd281..7a627f4478 100644 --- a/examples/proxy/go/http_server.go +++ b/examples/proxy/go/http_server.go @@ -10,7 +10,7 @@ import ( "os/signal" "syscall" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" "github.com/pborman/uuid" ) diff --git a/examples/proxy/go/proxy.go b/examples/proxy/go/proxy.go index 15b0568a97..e6e561d701 100644 --- a/examples/proxy/go/proxy.go +++ b/examples/proxy/go/proxy.go @@ -7,7 +7,7 @@ import ( "net/http" "net/url" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) var ( diff --git a/examples/proxy/go/rpc_server.go b/examples/proxy/go/rpc_server.go index 84090d5114..0aa81c7ccc 100644 --- a/examples/proxy/go/rpc_server.go +++ b/examples/proxy/go/rpc_server.go @@ -12,7 +12,7 @@ import ( "github.com/gorilla/rpc" "github.com/gorilla/rpc/json" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" "github.com/pborman/uuid" ) diff --git a/examples/pubsub/cli/main.go b/examples/pubsub/cli/main.go index eff79dbd2a..a2b092061f 100644 --- a/examples/pubsub/cli/main.go +++ b/examples/pubsub/cli/main.go @@ -6,8 +6,8 @@ import ( "context" proto "github.com/micro/go-micro/examples/pubsub/srv/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/util/log" "github.com/pborman/uuid" ) diff --git a/examples/pubsub/srv/main.go b/examples/pubsub/srv/main.go index c256184da4..39d3efceab 100644 --- a/examples/pubsub/srv/main.go +++ b/examples/pubsub/srv/main.go @@ -2,10 +2,10 @@ package main import ( proto "github.com/micro/go-micro/examples/pubsub/srv/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/server" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/server" + "github.com/asim/go-micro/v3/util/log" "context" ) diff --git a/examples/redirect/main.go b/examples/redirect/main.go index a8f9aa3c1f..81813a2ab8 100644 --- a/examples/redirect/main.go +++ b/examples/redirect/main.go @@ -4,7 +4,7 @@ import ( "log" "context" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" api "github.com/micro/micro/v2/api/proto" ) diff --git a/examples/roundrobin/api.go b/examples/roundrobin/api.go index 299a146131..64b996708a 100644 --- a/examples/roundrobin/api.go +++ b/examples/roundrobin/api.go @@ -6,8 +6,8 @@ import ( "strings" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/errors" roundrobin "github.com/micro/go-plugins/wrapper/select/roundrobin/v2" api "github.com/micro/micro/v2/api/proto" diff --git a/examples/secure/README.md b/examples/secure/README.md index a7850d2fda..2fb109573f 100644 --- a/examples/secure/README.md +++ b/examples/secure/README.md @@ -20,8 +20,8 @@ Create a tls.go file package main import ( - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/transport" ) func init() { diff --git a/examples/secure/cli/main.go b/examples/secure/cli/main.go index d6554f4e3a..b3d34a91a2 100644 --- a/examples/secure/cli/main.go +++ b/examples/secure/cli/main.go @@ -3,8 +3,8 @@ package main import ( "fmt" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/transport" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" diff --git a/examples/secure/srv/main.go b/examples/secure/srv/main.go index 5429fe527a..b685d0c1ba 100644 --- a/examples/secure/srv/main.go +++ b/examples/secure/srv/main.go @@ -6,8 +6,8 @@ import ( "context" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/transport" ) type Say struct{} diff --git a/examples/secure/srv/proto/hello/hello.micro.go b/examples/secure/srv/proto/hello/hello.micro.go index 3a669b7109..a76848be8c 100644 --- a/examples/secure/srv/proto/hello/hello.micro.go +++ b/examples/secure/srv/proto/hello/hello.micro.go @@ -19,8 +19,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/server/codegen/codegen.go b/examples/server/codegen/codegen.go index 7ecfdc10de..b8d59e259d 100644 --- a/examples/server/codegen/codegen.go +++ b/examples/server/codegen/codegen.go @@ -5,8 +5,8 @@ import ( "context" "github.com/micro/go-micro/examples/server/subscriber" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/server" example "github.com/micro/go-micro/examples/server/proto/example" ) diff --git a/examples/server/handler/example.go b/examples/server/handler/example.go index b970c24a85..90b5303331 100644 --- a/examples/server/handler/example.go +++ b/examples/server/handler/example.go @@ -4,8 +4,8 @@ import ( "log" example "github.com/micro/go-micro/examples/server/proto/example" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/server" "context" ) diff --git a/examples/server/main.go b/examples/server/main.go index 3f4205c6ce..1cfbae1e26 100644 --- a/examples/server/main.go +++ b/examples/server/main.go @@ -5,8 +5,8 @@ import ( "github.com/micro/go-micro/examples/server/handler" "github.com/micro/go-micro/examples/server/subscriber" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/server" ) func main() { diff --git a/examples/server/proto/example/example.micro.go b/examples/server/proto/example/example.micro.go index 8568dfd818..d38d71707f 100644 --- a/examples/server/proto/example/example.micro.go +++ b/examples/server/proto/example/example.micro.go @@ -24,8 +24,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/server/wrapper/main.go b/examples/server/wrapper/main.go index a0186cd3c7..7d8e2dc443 100644 --- a/examples/server/wrapper/main.go +++ b/examples/server/wrapper/main.go @@ -6,8 +6,8 @@ import ( "context" "github.com/micro/go-micro/examples/server/handler" "github.com/micro/go-micro/examples/server/subscriber" - "github.com/micro/go-micro/v2/config/cmd" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/config/cmd" + "github.com/asim/go-micro/v3/server" ) func logWrapper(fn server.HandlerFunc) server.HandlerFunc { diff --git a/examples/service/main.go b/examples/service/main.go index 0a1cf5ed6d..6702705b08 100644 --- a/examples/service/main.go +++ b/examples/service/main.go @@ -7,7 +7,7 @@ import ( "context" "github.com/micro/cli/v2" proto "github.com/micro/go-micro/examples/service/proto" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) /* diff --git a/examples/service/proto/greeter.pb.micro.go b/examples/service/proto/greeter.pb.micro.go index 8aeb165a2b..10d2163033 100644 --- a/examples/service/proto/greeter.pb.micro.go +++ b/examples/service/proto/greeter.pb.micro.go @@ -11,8 +11,8 @@ import ( import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/sharding/api.go b/examples/sharding/api.go index e24b1541f4..43f0c820be 100644 --- a/examples/sharding/api.go +++ b/examples/sharding/api.go @@ -6,8 +6,8 @@ import ( "strings" hello "github.com/micro/go-micro/examples/greeter/srv/proto/hello" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/errors" shard "github.com/micro/go-plugins/wrapper/select/shard/v2" api "github.com/micro/micro/v2/api/proto" diff --git a/examples/shutdown/main.go b/examples/shutdown/main.go index 324404ddec..a44edbd7e5 100644 --- a/examples/shutdown/main.go +++ b/examples/shutdown/main.go @@ -5,7 +5,7 @@ import ( "time" "context" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) func main() { diff --git a/examples/stream/client/main.go b/examples/stream/client/main.go index c36b5f6911..c05b01a809 100644 --- a/examples/stream/client/main.go +++ b/examples/stream/client/main.go @@ -6,7 +6,7 @@ import ( "context" proto "github.com/micro/go-micro/examples/stream/server/proto" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) func bidirectional(cl proto.StreamerService) { diff --git a/examples/stream/server/main.go b/examples/stream/server/main.go index 76bcc2a96a..63de925203 100644 --- a/examples/stream/server/main.go +++ b/examples/stream/server/main.go @@ -7,7 +7,7 @@ import ( "log" proto "github.com/micro/go-micro/examples/stream/server/proto" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" ) type Streamer struct{} diff --git a/examples/stream/server/proto/stream.micro.go b/examples/stream/server/proto/stream.micro.go index f234cfa580..852c4fb6e6 100644 --- a/examples/stream/server/proto/stream.micro.go +++ b/examples/stream/server/proto/stream.micro.go @@ -19,8 +19,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/stream/web/main.go b/examples/stream/web/main.go index f3f428b35f..ab0cbc2e09 100644 --- a/examples/stream/web/main.go +++ b/examples/stream/web/main.go @@ -9,8 +9,8 @@ import ( "github.com/gorilla/websocket" proto "github.com/micro/go-micro/examples/stream/server/proto" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/web" ) var upgrader = websocket.Upgrader{ diff --git a/examples/template/api/client/example.go b/examples/template/api/client/example.go index 0b1defe306..7ca97eec99 100644 --- a/examples/template/api/client/example.go +++ b/examples/template/api/client/example.go @@ -4,8 +4,8 @@ import ( "context" example "github.com/micro/go-micro/examples/template/srv/proto/example" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/server" ) type exampleKey struct{} diff --git a/examples/template/api/handler/example.go b/examples/template/api/handler/example.go index 333cc862bb..2216a99dc6 100644 --- a/examples/template/api/handler/example.go +++ b/examples/template/api/handler/example.go @@ -3,12 +3,12 @@ package handler import ( "context" "encoding/json" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/util/log" "github.com/micro/go-micro/examples/template/api/client" example "github.com/micro/go-micro/examples/template/srv/proto/example" - api "github.com/micro/go-micro/v2/api/proto" - "github.com/micro/go-micro/v2/errors" + api "github.com/asim/go-micro/v3/api/proto" + "github.com/asim/go-micro/v3/errors" ) type Example struct{} diff --git a/examples/template/api/main.go b/examples/template/api/main.go index 14c7b06b50..08cf62a406 100644 --- a/examples/template/api/main.go +++ b/examples/template/api/main.go @@ -1,11 +1,11 @@ package main import ( - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/util/log" "github.com/micro/go-micro/examples/template/api/client" "github.com/micro/go-micro/examples/template/api/handler" - "github.com/micro/go-micro/v2" + "github.com/asim/go-micro/v3" example "github.com/micro/go-micro/examples/template/api/proto/example" ) diff --git a/examples/template/api/proto/example/example.micro.go b/examples/template/api/proto/example/example.micro.go index b97816dfc5..6746069d75 100644 --- a/examples/template/api/proto/example/example.micro.go +++ b/examples/template/api/proto/example/example.micro.go @@ -6,14 +6,14 @@ package go_micro_api_template import ( fmt "fmt" proto "github.com/golang/protobuf/proto" - proto1 "github.com/micro/go-micro/v2/api/proto" + proto1 "github.com/asim/go-micro/v3/api/proto" math "math" ) import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/template/api/proto/example/example.pb.go b/examples/template/api/proto/example/example.pb.go index 5cb39c1848..e382d06f80 100644 --- a/examples/template/api/proto/example/example.pb.go +++ b/examples/template/api/proto/example/example.pb.go @@ -6,7 +6,7 @@ package go_micro_api_template import ( fmt "fmt" proto "github.com/golang/protobuf/proto" - _ "github.com/micro/go-micro/v2/api/proto" + _ "github.com/asim/go-micro/v3/api/proto" math "math" ) diff --git a/examples/template/api/proto/example/example.proto b/examples/template/api/proto/example/example.proto index 67663ddf8a..5e01a57c9e 100644 --- a/examples/template/api/proto/example/example.proto +++ b/examples/template/api/proto/example/example.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package go.micro.api.template; -import "github.com/micro/go-micro/v2/api/proto/api.proto"; +import "github.com/asim/go-micro/v3/api/proto/api.proto"; service Example { rpc Call(go.api.Request) returns (go.api.Response) {} diff --git a/examples/template/fnc/main.go b/examples/template/fnc/main.go index 47c132b287..e39053e91b 100644 --- a/examples/template/fnc/main.go +++ b/examples/template/fnc/main.go @@ -3,8 +3,8 @@ package main import ( "github.com/micro/go-micro/examples/template/fnc/handler" "github.com/micro/go-micro/examples/template/fnc/subscriber" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/util/log" ) func main() { diff --git a/examples/template/fnc/proto/example/example.micro.go b/examples/template/fnc/proto/example/example.micro.go index 28ca1a6794..f4f08f63dc 100644 --- a/examples/template/fnc/proto/example/example.micro.go +++ b/examples/template/fnc/proto/example/example.micro.go @@ -20,8 +20,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/template/fnc/subscriber/example.go b/examples/template/fnc/subscriber/example.go index e48e798365..21d8227ad8 100644 --- a/examples/template/fnc/subscriber/example.go +++ b/examples/template/fnc/subscriber/example.go @@ -3,7 +3,7 @@ package subscriber import ( "context" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/util/log" example "github.com/micro/go-micro/examples/template/fnc/proto/example" ) diff --git a/examples/template/srv/handler/example.go b/examples/template/srv/handler/example.go index bcda0993e4..b562aaf287 100644 --- a/examples/template/srv/handler/example.go +++ b/examples/template/srv/handler/example.go @@ -3,7 +3,7 @@ package handler import ( "context" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/util/log" example "github.com/micro/go-micro/examples/template/srv/proto/example" ) diff --git a/examples/template/srv/main.go b/examples/template/srv/main.go index 77718db29c..5ddd6db1ec 100644 --- a/examples/template/srv/main.go +++ b/examples/template/srv/main.go @@ -3,8 +3,8 @@ package main import ( "github.com/micro/go-micro/examples/template/srv/handler" "github.com/micro/go-micro/examples/template/srv/subscriber" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/util/log" example "github.com/micro/go-micro/examples/template/srv/proto/example" ) diff --git a/examples/template/srv/proto/example/example.micro.go b/examples/template/srv/proto/example/example.micro.go index 0bb9fff4de..845853e77f 100644 --- a/examples/template/srv/proto/example/example.micro.go +++ b/examples/template/srv/proto/example/example.micro.go @@ -24,8 +24,8 @@ import math "math" import ( context "context" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/examples/template/srv/subscriber/example.go b/examples/template/srv/subscriber/example.go index 230e31d972..c635547fb7 100644 --- a/examples/template/srv/subscriber/example.go +++ b/examples/template/srv/subscriber/example.go @@ -2,7 +2,7 @@ package subscriber import ( "context" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/util/log" example "github.com/micro/go-micro/examples/template/srv/proto/example" ) diff --git a/examples/template/web/handler/handler.go b/examples/template/web/handler/handler.go index 68e073d785..d6ff500d6d 100644 --- a/examples/template/web/handler/handler.go +++ b/examples/template/web/handler/handler.go @@ -7,7 +7,7 @@ import ( "time" example "github.com/micro/go-micro/examples/template/srv/proto/example" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3/client" ) func ExampleCall(w http.ResponseWriter, r *http.Request) { diff --git a/examples/template/web/main.go b/examples/template/web/main.go index 707b81c335..e5d771963c 100644 --- a/examples/template/web/main.go +++ b/examples/template/web/main.go @@ -4,8 +4,8 @@ import ( "net/http" "github.com/micro/go-micro/examples/template/web/handler" - "github.com/micro/go-micro/v2/util/log" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/util/log" + "github.com/asim/go-micro/v3/web" ) func main() { diff --git a/examples/tunnel/echo/main.go b/examples/tunnel/echo/main.go index c475a6d545..37e951d795 100644 --- a/examples/tunnel/echo/main.go +++ b/examples/tunnel/echo/main.go @@ -7,8 +7,8 @@ import ( "os" "github.com/google/uuid" - "github.com/micro/go-micro/v2/transport" - "github.com/micro/go-micro/v2/tunnel" + "github.com/asim/go-micro/v3/transport" + "github.com/asim/go-micro/v3/tunnel" ) var ( diff --git a/examples/tunnel/tunnel.go b/examples/tunnel/tunnel.go index 36a8088b0c..63a6558e74 100644 --- a/examples/tunnel/tunnel.go +++ b/examples/tunnel/tunnel.go @@ -4,9 +4,9 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/transport" - "github.com/micro/go-micro/v2/tunnel" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/transport" + "github.com/asim/go-micro/v3/tunnel" + "github.com/asim/go-micro/v3/util/log" ) // testAccept will accept connections on the transport, create a new link and tunnel on top diff --git a/examples/waitgroup/main.go b/examples/waitgroup/main.go index 8413378d35..09f6d4b672 100644 --- a/examples/waitgroup/main.go +++ b/examples/waitgroup/main.go @@ -5,8 +5,8 @@ import ( "sync" "context" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/server" ) // waitgroup is a handler wrapper which adds a handler to a sync.WaitGroup diff --git a/examples/web/main.go b/examples/web/main.go index b97a13d735..1957f311ce 100644 --- a/examples/web/main.go +++ b/examples/web/main.go @@ -5,7 +5,7 @@ import ( "log" "net/http" - "github.com/micro/go-micro/v2/web" + "github.com/asim/go-micro/v3/web" ) func helloWorldHandler(w http.ResponseWriter, r *http.Request) { diff --git a/examples/wrapper/cli/main.go b/examples/wrapper/cli/main.go index e24e97e8e9..81966908b2 100644 --- a/examples/wrapper/cli/main.go +++ b/examples/wrapper/cli/main.go @@ -5,8 +5,8 @@ import ( "context" proto "github.com/micro/go-micro/examples/service/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/client" ) // log wrapper logs every time a request is made diff --git a/examples/wrapper/main.go b/examples/wrapper/main.go index 7daf2e470d..28438ecb2b 100644 --- a/examples/wrapper/main.go +++ b/examples/wrapper/main.go @@ -6,8 +6,8 @@ import ( "context" proto "github.com/micro/go-micro/examples/service/proto" - "github.com/micro/go-micro/v2" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3" + "github.com/asim/go-micro/v3/server" ) type Greeter struct{} diff --git a/function.go b/function.go index 060370660d..08e021afd1 100644 --- a/function.go +++ b/function.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/server" ) type function struct { diff --git a/function_test.go b/function_test.go index fb95ec755d..7eee0008b8 100644 --- a/function_test.go +++ b/function_test.go @@ -5,9 +5,9 @@ import ( "sync" "testing" - proto "github.com/micro/go-micro/v2/debug/proto" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/util/test" + proto "github.com/asim/go-micro/v3/debug/proto" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/util/test" ) func TestFunction(t *testing.T) { diff --git a/go.mod b/go.mod index 0a3f233529..ffaedbd7a1 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/micro/go-micro/v2 +module github.com/asim/go-micro/v3 go 1.13 diff --git a/go.sum b/go.sum index 8fe01b1709..663ec60b19 100644 --- a/go.sum +++ b/go.sum @@ -45,6 +45,7 @@ github.com/OpenDNS/vegadns2client v0.0.0-20180418235048-a3fa4a771d87/go.mod h1:i github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/akamai/AkamaiOPEN-edgegrid-golang v0.9.0/go.mod h1:zpDJeKyp9ScW4NNrbdr+Eyxvry3ilGPewKoXw3XGN1k= +github.com/alangpierce/go-forceexport v0.0.0-20160317203124-8f1d6941cd75/go.mod h1:uAXEEpARkRhCZfEvy/y0Jcc888f9tHCc1W7/UeEtreE= github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7 h1:uSoVVbwJiQipAclBbw+8quDsfcvFjOpI5iCf4p/cqCs= github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= @@ -68,8 +69,11 @@ github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 h1:DDGfHa7BWjL4Yn github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g= github.com/buger/jsonparser v0.0.0-20181115193947-bf1c66bbce23/go.mod h1:bbYlZJ7hK1yFx9hf58LP0zeX7UjIGs20ufpu3evjr+s= +github.com/bwmarrin/discordgo v0.20.2/go.mod h1:O9S4p+ofTFwB02em7jkpkV8M3R0/PUVOwN61zSZ0r4Q= +github.com/caddyserver/certmagic v0.10.6/go.mod h1:Y8jcUBctgk/IhpAzlHKfimZNyXCkfGgRTC0orl8gROQ= github.com/cenkalti/backoff/v4 v4.0.0/go.mod h1:eEew/i+1Q6OrCDZh3WiXYv3+nJwBASZ8Bog/87DQnVg= github.com/census-instrumentation/opencensus-proto v0.2.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/cheekybits/genny v1.0.0 h1:uGGa4nei+j20rOSeDeP5Of12XVm7TGUd4dJA9RDitfE= github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= @@ -85,11 +89,18 @@ github.com/containerd/fifo v0.0.0-20190226154929-a9fb20d87448/go.mod h1:ODA38xgv github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= github.com/containerd/ttrpc v0.0.0-20190828154514-0e0f228740de/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd/go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc= +github.com/coreos/bbolt v1.3.3/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= +github.com/coreos/etcd v3.3.18+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cpu/goacmedns v0.0.1/go.mod h1:sesf/pNnCYwUevQEQfEwY0Y3DydlQWSGZbaMElOWxok= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d h1:U+s90UTSYgptZMwQh2aRr3LuazLJIa+Pg3Kc1ylSYVY= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/cpuguy83/go-md2man/v2 v2.0.0 h1:EoUDS0afbrsXAZ9YQ9jdu/mZ2sXgT1/2yyNng4PGlyM= +github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -114,12 +125,15 @@ github.com/ef-ds/deque v1.0.4-0.20190904040645-54cb57c252a1 h1:jFGzikHboUMRXmMBt github.com/ef-ds/deque v1.0.4-0.20190904040645-54cb57c252a1/go.mod h1:HvODWzv6Y6kBf3Ah2WzN1bHjDUezGLaAhwuWVwfpEJs= github.com/emirpasic/gods v1.12.0 h1:QAUIPSaCu4G+POclxeqb3F+WPpdKqFGlw36+yOzGlrg= github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= github.com/evanphx/json-patch/v5 v5.0.0 h1:dKTrUeykyQwKb/kx7Z+4ukDs6l+4L41HqG1XHnhX7WE= github.com/evanphx/json-patch/v5 v5.0.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4= github.com/exoscale/egoscale v0.18.1/go.mod h1:Z7OOdzzTOz1Q1PjQXumlz9Wn/CddH0zSYdCF3rnBKXE= github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568 h1:BHsljHzVlRcyQhjrss6TZTdY2VfCqZPbv5k3iBFa2ZQ= github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= +github.com/forestgiant/sliceutil v0.0.0-20160425183142-94783f95db6c/go.mod h1:pFdJbAhRf7rh6YYMUdIQGyzne6zYL1tCUW8QV2B3UfY= github.com/francoispqt/gojay v1.2.13/go.mod h1:ehT5mTG4ua4581f1++1WLG0vPdaA9HaiDsoyrBGkyDY= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9 h1:hsms1Qyu0jgnwNXIxa+/V/PDsU6CfLf6CNO8H7IWoS4= @@ -149,8 +163,10 @@ github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2 github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible/go.mod h1:qf9acutJ8cwBUhm1bqgz6Bei9/C/c93FPDljKWwsOgM= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee h1:s+21KNqlpePfkah2I+gwHF8xmJWRjooY+5248k6m4A0= github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= +github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/pool v0.2.1 h1:xfeeEhW7pwmX8nuLVlqbzVc7udMDrwetjEv+TZIz1og= github.com/gobwas/pool v0.2.1/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= github.com/gobwas/ws v1.0.3 h1:ZOigqf7iBxkA4jdQ3am7ATzdlOFp9YzA6NmuvEEZc9g= @@ -162,9 +178,11 @@ github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7a github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/goji/httpauth v0.0.0-20160601135302-2da839ab0f4d/go.mod h1:nnjvkQ9ptGaCkuDUx6wNykzzlUixGxvkme+H/lnzb+A= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= @@ -173,8 +191,10 @@ github.com/golang/mock v1.4.0/go.mod h1:UOMv5ysSaYNkG+OFQykRIcU/QvvxJf3p21QfJ2Bt github.com/golang/mock v1.4.4 h1:l75CXGRSwbaYNpl/Z2X1XIIAMSCquvXgpVZDhwEIJsc= github.com/golang/mock v1.4.4/go.mod h1:l3mdAwkq5BuhzHwde/uurv3sEJeZMXNpwsxVWU71h+4= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= @@ -210,15 +230,22 @@ github.com/gorilla/handlers v1.4.2 h1:0QniY0USkHQ1RGCLfKxeNHK9bkDHGRYGNDFBCS+YAR github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/websocket v1.2.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= +github.com/grpc-ecosystem/go-grpc-middleware v1.1.0/go.mod h1:f5nM7jw/oeRSadq3xCzHAvxcr8HZnzsqU6ILg/0NiiE= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= github.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw= github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI= github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874/go.mod h1:JMRHfdO9jKNzS/+BTlxCjKNQHg/jZAft8U7LloJvN7I= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= github.com/iij/doapi v0.0.0-20190504054126-0bbf12d6d7df/go.mod h1:QMZY7/J/KSQEhKWFeDesPjMj+wCHReeknARU3wqlyN4= @@ -229,9 +256,11 @@ github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1/go.mod h1:E0B/fFc00Y+Rasa88328GlI/XbtyysCtTHZS8h7IrBU= github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/json-iterator/go v1.1.5/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= @@ -239,6 +268,7 @@ github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd h1:Coekwdh0v github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/kolo/xmlrpc v0.0.0-20190717152603-07c4ee3fd181/go.mod h1:o03bZfuBwAXHetKXuInt4S7omeXUu62/A845kiycsSQ= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.2 h1:DB17ag19krx9CFsz4o3enTrPXyIXCl+2iCXH/aMAp9s= @@ -253,13 +283,18 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= github.com/labbsr0x/bindman-dns-webhook v1.0.2/go.mod h1:p6b+VCXIR8NYKpDr8/dg1HKfQoRHCdcsROXKvmoehKA= github.com/labbsr0x/goh v1.0.1/go.mod h1:8K2UhVoaWXcCU7Lxoa2omWnC8gyW8px7/lmO61c027w= +github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/linode/linodego v0.10.0/go.mod h1:cziNP7pbvE3mXIPneHj0oRY8L1WtGEIKlZ8LANE4eXA= github.com/liquidweb/liquidweb-go v1.6.0/go.mod h1:UDcVnAMDkZxpw4Y7NOHkqoeiGacVLEIG/i5J9cyixzQ= +github.com/lucas-clemente/quic-go v0.14.1/go.mod h1:Vn3/Fb0/77b02SGhQk36KzOUmXgVpFfizUfW5WMaqyU= github.com/lucas-clemente/quic-go v0.19.3 h1:eCDQqvGBB+kCTkA0XrAFtNe81FMa0/fn4QSoeAbmiF4= github.com/lucas-clemente/quic-go v0.19.3/go.mod h1:ADXpNbTQjq1hIzCpB+y/k5iz4n4z4IwqoLb94Kh5Hu8= github.com/lunixbochs/vtclean v1.0.0/go.mod h1:pHhQNgMf3btfWnGBVipUOjRYhoOsdGqdm/+2c2E2WMI= github.com/mailru/easyjson v0.0.0-20190312143242-1de009706dbe/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc= +github.com/marten-seemann/chacha20 v0.2.0/go.mod h1:HSdjFau7GzYRj+ahFNwsO3ouVJr1HFkWoEwNDb4TMtE= +github.com/marten-seemann/qpack v0.1.0/go.mod h1:LFt1NU/Ptjip0C2CPkhimBz5CGE3WGDAUWqna+CNTrI= github.com/marten-seemann/qpack v0.2.1/go.mod h1:F7Gl5L1jIgN1D11ucXefiuJS9UMVP2opoCp2jDKb7wc= +github.com/marten-seemann/qtls v0.4.1/go.mod h1:pxVXcHHw1pNIt8Qo0pwSYQEoZ8yYOOPXTCZLQQunvRc= github.com/marten-seemann/qtls v0.10.0 h1:ECsuYUKalRL240rRD4Ri33ISb7kAQ3qGDlrrl55b2pc= github.com/marten-seemann/qtls v0.10.0/go.mod h1:UvMd1oaYDACI99/oZUYLzMCkBXQVT0aGm99sJhbT8hs= github.com/marten-seemann/qtls-go1-15 v0.1.1 h1:LIH6K34bPVttyXnUWixk0bzH6/N07VxbSabxn5A5gZQ= @@ -269,8 +304,11 @@ github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzp github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-tty v0.0.0-20180219170247-931426f7535a/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/micro/cli v0.2.0 h1:ut3rV5JWqZjsXIa2MvGF+qMUP8DAUTvHX9Br5gO4afA= github.com/micro/cli/v2 v2.1.2 h1:43J1lChg/rZCC1rvdqZNFSQDrGT7qfMrtp6/ztpIkEM= github.com/micro/cli/v2 v2.1.2/go.mod h1:EguNh6DAoWKm9nmk+k/Rg0H3lQnDxqzu5x5srOtGtYg= +github.com/micro/go-micro/v2 v2.9.1 h1:+S9koIrNWARjpP6k2TZ7kt0uC9zUJtNXzIdZTZRms7Q= +github.com/micro/go-micro/v2 v2.9.1/go.mod h1:x55ZM3Puy0FyvvkR3e0ha0xsE9DFwfPSUMWAIbFY0SY= github.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4= github.com/miekg/dns v1.1.15/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.27 h1:aEH/kqUzUxGJ/UHcEKdJY+ugH6WEzsEBBSPa8zuy1aM= @@ -278,6 +316,7 @@ github.com/miekg/dns v1.1.27/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7 github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/go-vnc v0.0.0-20150629162542-723ed9867aed/go.mod h1:3rdaFaCv4AyBgu5ALFM0+tSuHrBh6v692nyQe3ikrq0= +github.com/mitchellh/hashstructure v1.0.0/go.mod h1:QjSHrPWS+BGUVBYkbTZWEnOh3G1DutKwClXU/ABz6AQ= github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= @@ -287,11 +326,18 @@ github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c h1:nXxl5PrvVm2L/wCy8d github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/namedotcom/go v0.0.0-20180403034216-08470befbe04/go.mod h1:5sN+Lt1CaY4wsPvgQH/jsuJi4XO2ssZbdsIizr4CVC8= +github.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU= +github.com/nats-io/nats-server/v2 v2.1.6/go.mod h1:BL1NOtaBQ5/y97djERRVWNouMW7GT3gxnmbE/eC8u8A= +github.com/nats-io/nats.go v1.9.2/go.mod h1:AjGArbfyR50+afOUotNX2Xs5SYHf+CoOa5HH1eEl2HE= +github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= +github.com/nats-io/nkeys v0.1.4/go.mod h1:XdZpAbhgyyODYqjTawOnIOI7VlbKSarI9Gfy1tqEu/s= +github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms= github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod h1:kHJEU3ofeGjhHklVoIGuVj85JJwZ6kWPaJwCIxgnFmo= github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab/go.mod h1:Qr6/a/Q4r9LP1IltGz7tA7iOK1WonHEYhu1HRBA7ZiM= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/nlopes/slack v0.6.1-0.20191106133607-d06c2a2b3249/go.mod h1:JzQ9m3PMAqcpeCam7UaHSuBuupz7CmpjehYMayT6YOk= github.com/nrdcg/auroradns v1.0.0/go.mod h1:6JPXKzIRzZzMqtTDgueIhTi6rFf1QvYE/HzqidhOhjw= github.com/nrdcg/dnspod-go v0.4.0/go.mod h1:vZSoFSFeQVm2gWLMkyX61LZ8HI3BaqtHZWgPTGKr6KQ= github.com/nrdcg/goinwx v0.6.1/go.mod h1:XPiut7enlbEdntAqalBIqcYcTEVhpv/dKWgDCX2SwKQ= @@ -318,6 +364,7 @@ github.com/opencontainers/runc v0.1.1 h1:GlxAyO6x8rfZYN9Tt0Kti5a/cP41iuiO2yYT0IJ github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= github.com/opencontainers/runtime-spec v0.1.2-0.20190507144316-5b71a03e2700/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= github.com/opencontainers/runtime-tools v0.0.0-20181011054405-1d69bd0f9c39/go.mod h1:r3f7wjNzSs2extwzU3Y+6pKfobzPh+kKFJ3ofN+3nfs= +github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= github.com/openzipkin/zipkin-go v0.1.1/go.mod h1:NtoC/o8u3JlF1lSlyPNswIbeQH9bJTmOf0Erfk+hxe8= github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= github.com/oracle/oci-go-sdk v7.0.0+incompatible/go.mod h1:VQb79nF8Z2cwLkLS35ukwStZIg5F66tcBccjip/j888= @@ -341,6 +388,7 @@ github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQ github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= @@ -395,6 +443,7 @@ github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6Mwd github.com/skratchdot/open-golang v0.0.0-20160302144031-75fb7ed4208c/go.mod h1:sUM3LWHvSMaG192sy56D9F7CNvL7jUJVXoqM1QKLnog= github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= +github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d/go.mod h1:UdhH50NIW0fCiwBSr0co2m7BnFLdv4fQTgdqdJTHFeE= github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e/go.mod h1:HuIsMU8RRBOtsCgI77wP899iHVBQpCmg4ErYMZB+2IA= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= @@ -405,7 +454,9 @@ github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJy github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod h1:kDXzergiv9cbyO7IOYJZWg1U88JhDg3PB6klq9Hg2pA= +github.com/technoweenie/multipartstreamer v1.0.1/go.mod h1:jNVxdtShOxzAsukZwTSw6MDx5eUJoiEBsSvzDU9uzog= github.com/timewasted/linode v0.0.0-20160829202747-37e84520dcf7/go.mod h1:imsgLplxEC/etjIhdr3dNzV3JeT27LbVu5pYWm0JCBY= +github.com/tmc/grpc-websocket-proxy v0.0.0-20200122045848-3419fae592fc/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= github.com/transip/gotransip v0.0.0-20190812104329-6d8d9179b66f/go.mod h1:i0f4R4o2HM0m3DZYQWsj6/MEowD57VzoH0v3d7igeFY= github.com/uber-go/atomic v1.3.2/go.mod h1:/Ct5t2lcmbJ4OSe/waGBoaVvVqtO0bmtfVNex1PFV8g= github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= @@ -419,6 +470,8 @@ github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2 github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= github.com/xeipuuv/gojsonschema v1.1.0/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= +github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= +go.etcd.io/bbolt v1.3.4/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= go.opencensus.io v0.18.0/go.mod h1:vKdFvxhtzZ9onBp9VKHK8z/sRpBMnKAsufL7wlDrCOA= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -426,7 +479,14 @@ go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw= go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= go.uber.org/ratelimit v0.0.0-20180316092928-c15da0234277/go.mod h1:2X8KaoNd1J0lZV+PxJk/5+DGbO/tpwLR1m++a7FnB/Y= +go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= +go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= go4.org v0.0.0-20180809161055-417644f6feb5/go.mod h1:MkTOUMDaeVYJUOUsaDXIhWPZYa1yOyC1qaOBpL57BhE= golang.org/x/build v0.0.0-20190111050920-041ab4dc3f9d/go.mod h1:OWs+y06UdEOHN4y+MfF/py+xQ/tYqIWW03b70/CG9Rw= golang.org/x/crypto v0.0.0-20180621125126-a49355c7e3f8/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= @@ -439,10 +499,14 @@ golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a/go.mod h1:djNgcEr1/C05ACk golang.org/x/crypto v0.0.0-20190418165655-df01cb2cc480/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20190927123631-a832865fa7ad/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 h1:psW17arqaxU48Z5kZ0CQnkZWQJsqcURM6tKiBApRjXI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -459,6 +523,7 @@ golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTk golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= @@ -476,6 +541,7 @@ golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73r golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190228165749-92fc7df08ae7/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190313220215-9f648a60d977/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= @@ -490,6 +556,7 @@ golang.org/x/net v0.0.0-20190930134127-c5a3c61f89f3/go.mod h1:z5CRVTTTmAJ677TzLL golang.org/x/net v0.0.0-20191027093000-83d349e8ac1a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= golang.org/x/net v0.0.0-20200707034311-ab3426394381 h1:VXak5I6aEWmAXeQjA+QSZzlgNrpq9mjcfDemuexIKsU= golang.org/x/net v0.0.0-20200707034311-ab3426394381/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= @@ -534,11 +601,14 @@ golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 h1:DYfZAGf2WMFjMxbgTjaC+2HC7NkNAQs+6Q8b9WEB/F4= golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121 h1:rITEj+UZHYC927n8GT97eC3zrpzXdb/voyeOuVKS46o= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -548,6 +618,7 @@ golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxb golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190921001708-c4c64cad1fd0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= @@ -567,6 +638,8 @@ golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgw golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -612,11 +685,15 @@ google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiq google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.22.0 h1:J0UbZOIrCAl+fpTOf8YLs4dJo8L/owV4LYVtAXQoPkw= google.golang.org/grpc v1.22.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.26.0 h1:2dTRdpdFEEhJYQD8EMLB61nnrzSCTbG38PhqdhvOltg= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= google.golang.org/protobuf v1.23.0 h1:4MY060fB1DLGMB/7MBTLnwQUY6+F09GEiz6SsrNqyzM= google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= @@ -636,6 +713,7 @@ gopkg.in/ns1/ns1-go.v2 v2.0.0-20190730140822-b51389932cbc/go.mod h1:VV+3haRsgDiV gopkg.in/resty.v1 v1.9.1/go.mod h1:vo52Hzryw9PnPHcJfPsBiFW62XhNx5OczbV9y+IMpgc= gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= +gopkg.in/telegram-bot-api.v4 v4.6.4/go.mod h1:5DpGO5dbumb40px+dXcwCpcjmeHNYLpk0bp3XRNvWDM= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME= @@ -659,5 +737,6 @@ k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA= +sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= sourcegraph.com/sourcegraph/go-diff v0.5.0/go.mod h1:kuch7UrkMzY0X+p9CRK03kfuPQ2zzQcaEFbx8wA8rck= sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0= diff --git a/logger/default.go b/logger/default.go index 70aeb47633..7cd1b67ac4 100644 --- a/logger/default.go +++ b/logger/default.go @@ -10,7 +10,7 @@ import ( "sync" "time" - dlog "github.com/micro/go-micro/v2/debug/log" + dlog "github.com/asim/go-micro/v3/debug/log" ) func init() { diff --git a/micro.go b/micro.go index 77be00d094..780f5edf20 100644 --- a/micro.go +++ b/micro.go @@ -4,8 +4,8 @@ package micro import ( "context" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/server" ) type serviceKey struct{} diff --git a/network/default.go b/network/default.go index 1a10f887f1..1df9a16f7e 100644 --- a/network/default.go +++ b/network/default.go @@ -11,20 +11,20 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/logger" + pbNet "github.com/asim/go-micro/v3/network/proto" + "github.com/asim/go-micro/v3/network/proxy" + "github.com/asim/go-micro/v3/network/resolver/dns" + "github.com/asim/go-micro/v3/network/router" + rtr "github.com/asim/go-micro/v3/network/router/selector" + "github.com/asim/go-micro/v3/network/tunnel" + bun "github.com/asim/go-micro/v3/network/tunnel/broker" + tun "github.com/asim/go-micro/v3/network/tunnel/transport" + "github.com/asim/go-micro/v3/server" + "github.com/asim/go-micro/v3/transport" + "github.com/asim/go-micro/v3/util/backoff" "github.com/golang/protobuf/proto" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/logger" - pbNet "github.com/micro/go-micro/v2/network/proto" - "github.com/micro/go-micro/v2/network/proxy" - "github.com/micro/go-micro/v2/network/resolver/dns" - "github.com/micro/go-micro/v2/network/router" - rtr "github.com/micro/go-micro/v2/network/router/selector" - "github.com/micro/go-micro/v2/network/tunnel" - bun "github.com/micro/go-micro/v2/network/tunnel/broker" - tun "github.com/micro/go-micro/v2/network/tunnel/transport" - "github.com/micro/go-micro/v2/server" - "github.com/micro/go-micro/v2/transport" - "github.com/micro/go-micro/v2/util/backoff" ) var ( diff --git a/network/network.go b/network/network.go index 5d0b8cce86..a7b2c69ce2 100644 --- a/network/network.go +++ b/network/network.go @@ -4,8 +4,8 @@ package network import ( "time" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/server" ) var ( diff --git a/network/node.go b/network/node.go index de507b2fb4..55968dc17b 100644 --- a/network/node.go +++ b/network/node.go @@ -6,7 +6,7 @@ import ( "sync" "time" - pb "github.com/micro/go-micro/v2/network/proto" + pb "github.com/asim/go-micro/v3/network/proto" ) var ( diff --git a/network/node_test.go b/network/node_test.go index 868bd30093..99e4dc050a 100644 --- a/network/node_test.go +++ b/network/node_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - pb "github.com/micro/go-micro/v2/network/proto" + pb "github.com/asim/go-micro/v3/network/proto" ) var ( diff --git a/network/options.go b/network/options.go index 2f9337c831..c531bd535d 100644 --- a/network/options.go +++ b/network/options.go @@ -1,13 +1,13 @@ package network import ( + "github.com/asim/go-micro/v3/network/proxy" + "github.com/asim/go-micro/v3/network/proxy/mucp" + "github.com/asim/go-micro/v3/network/resolver" + "github.com/asim/go-micro/v3/network/resolver/registry" + "github.com/asim/go-micro/v3/network/router" + "github.com/asim/go-micro/v3/network/tunnel" "github.com/google/uuid" - "github.com/micro/go-micro/v2/network/proxy" - "github.com/micro/go-micro/v2/network/proxy/mucp" - "github.com/micro/go-micro/v2/network/resolver" - "github.com/micro/go-micro/v2/network/resolver/registry" - "github.com/micro/go-micro/v2/network/router" - "github.com/micro/go-micro/v2/network/tunnel" ) type Option func(*Options) diff --git a/network/proto/network.pb.micro.go b/network/proto/network.pb.micro.go index 37b5d18115..e843d02602 100644 --- a/network/proto/network.pb.micro.go +++ b/network/proto/network.pb.micro.go @@ -11,9 +11,9 @@ import ( import ( context "context" - api "github.com/micro/go-micro/v2/api" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + api "github.com/asim/go-micro/v3/api" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/network/proxy/mucp/mucp.go b/network/proxy/mucp/mucp.go index ea87574ace..55bb09f56a 100644 --- a/network/proxy/mucp/mucp.go +++ b/network/proxy/mucp/mucp.go @@ -10,16 +10,16 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/codec/bytes" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/network/proxy" - "github.com/micro/go-micro/v2/network/router" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/codec/bytes" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/network/proxy" + "github.com/asim/go-micro/v3/network/router" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/server" ) // Proxy will transparently proxy requests to an endpoint. diff --git a/network/proxy/options.go b/network/proxy/options.go index 08d701d062..54af2225cc 100644 --- a/network/proxy/options.go +++ b/network/proxy/options.go @@ -2,8 +2,8 @@ package proxy import ( - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/network/router" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/network/router" ) type Options struct { diff --git a/network/proxy/proxy.go b/network/proxy/proxy.go index 6b7b3a8d23..c0e77a260e 100644 --- a/network/proxy/proxy.go +++ b/network/proxy/proxy.go @@ -4,7 +4,7 @@ package proxy import ( "context" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/server" ) // Proxy can be used as a proxy server for go-micro services diff --git a/network/resolver/dns/dns.go b/network/resolver/dns/dns.go index 2b1670f1c5..15f55961c9 100644 --- a/network/resolver/dns/dns.go +++ b/network/resolver/dns/dns.go @@ -5,7 +5,7 @@ import ( "context" "net" - "github.com/micro/go-micro/v2/network/resolver" + "github.com/asim/go-micro/v3/network/resolver" "github.com/miekg/dns" ) diff --git a/network/resolver/dnssrv/dnssrv.go b/network/resolver/dnssrv/dnssrv.go index 80259eec95..904ffcfcfa 100644 --- a/network/resolver/dnssrv/dnssrv.go +++ b/network/resolver/dnssrv/dnssrv.go @@ -5,7 +5,7 @@ import ( "fmt" "net" - "github.com/micro/go-micro/v2/network/resolver" + "github.com/asim/go-micro/v3/network/resolver" ) // Resolver is a DNS network resolve diff --git a/network/resolver/http/http.go b/network/resolver/http/http.go index 0523232fc9..eb82f4bca8 100644 --- a/network/resolver/http/http.go +++ b/network/resolver/http/http.go @@ -8,7 +8,7 @@ import ( "net/http" "net/url" - "github.com/micro/go-micro/v2/network/resolver" + "github.com/asim/go-micro/v3/network/resolver" ) // Resolver is a HTTP network resolver diff --git a/network/resolver/registry/registry.go b/network/resolver/registry/registry.go index 0852d9c837..9b5332fce2 100644 --- a/network/resolver/registry/registry.go +++ b/network/resolver/registry/registry.go @@ -2,8 +2,8 @@ package registry import ( - "github.com/micro/go-micro/v2/network/resolver" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/network/resolver" + "github.com/asim/go-micro/v3/registry" ) // Resolver is a registry network resolver diff --git a/network/resolver/static/static.go b/network/resolver/static/static.go index 49f6400395..40fad8edbd 100644 --- a/network/resolver/static/static.go +++ b/network/resolver/static/static.go @@ -2,7 +2,7 @@ package registry import ( - "github.com/micro/go-micro/v2/network/resolver" + "github.com/asim/go-micro/v3/network/resolver" ) // Resolver returns a static list of nodes. In the event the node list diff --git a/network/router/default.go b/network/router/default.go index f3b329a489..8575aa63f4 100644 --- a/network/router/default.go +++ b/network/router/default.go @@ -8,9 +8,9 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/registry" "github.com/google/uuid" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/registry" ) var ( diff --git a/network/router/default_test.go b/network/router/default_test.go index 9875a4717e..1e0640592c 100644 --- a/network/router/default_test.go +++ b/network/router/default_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func routerTestSetup() Router { diff --git a/network/router/options.go b/network/router/options.go index a5f44b463a..a026c70b5e 100644 --- a/network/router/options.go +++ b/network/router/options.go @@ -1,9 +1,9 @@ package router import ( + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/registry" "github.com/google/uuid" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/registry" ) // Options are router options diff --git a/network/router/selector/selector.go b/network/router/selector/selector.go index 4d3c910bf0..c344b8983c 100644 --- a/network/router/selector/selector.go +++ b/network/router/selector/selector.go @@ -5,9 +5,9 @@ import ( "sort" "sync" - "github.com/micro/go-micro/v2/network/router" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" + "github.com/asim/go-micro/v3/network/router" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" ) type routerSelector struct { diff --git a/network/router/table.go b/network/router/table.go index cd5e581511..a4ae1d447a 100644 --- a/network/router/table.go +++ b/network/router/table.go @@ -5,8 +5,8 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/logger" "github.com/google/uuid" - "github.com/micro/go-micro/v2/logger" ) var ( diff --git a/network/tunnel/broker/broker.go b/network/tunnel/broker/broker.go index c748213078..7cde207a7d 100644 --- a/network/tunnel/broker/broker.go +++ b/network/tunnel/broker/broker.go @@ -4,9 +4,9 @@ package broker import ( "context" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/network/tunnel" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/network/tunnel" + "github.com/asim/go-micro/v3/transport" ) type tunBroker struct { diff --git a/network/tunnel/default.go b/network/tunnel/default.go index b573b4e9e0..775998ddba 100644 --- a/network/tunnel/default.go +++ b/network/tunnel/default.go @@ -7,9 +7,9 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/transport" "github.com/google/uuid" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/transport" ) var ( diff --git a/network/tunnel/link.go b/network/tunnel/link.go index 5872d9df8f..c905de1bc5 100644 --- a/network/tunnel/link.go +++ b/network/tunnel/link.go @@ -7,9 +7,9 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/transport" "github.com/google/uuid" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/transport" ) type link struct { diff --git a/network/tunnel/listener.go b/network/tunnel/listener.go index d775804e7a..1cf5e2becd 100644 --- a/network/tunnel/listener.go +++ b/network/tunnel/listener.go @@ -4,7 +4,7 @@ import ( "io" "sync" - "github.com/micro/go-micro/v2/logger" + "github.com/asim/go-micro/v3/logger" ) type tunListener struct { diff --git a/network/tunnel/options.go b/network/tunnel/options.go index f2a47e57d7..9d40a58993 100644 --- a/network/tunnel/options.go +++ b/network/tunnel/options.go @@ -3,9 +3,9 @@ package tunnel import ( "time" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/transport" "github.com/google/uuid" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/transport" ) var ( diff --git a/network/tunnel/session.go b/network/tunnel/session.go index 8037546ea7..082cc952a2 100644 --- a/network/tunnel/session.go +++ b/network/tunnel/session.go @@ -7,8 +7,8 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/transport" ) // session is our pseudo session for transport.Socket diff --git a/network/tunnel/transport/listener.go b/network/tunnel/transport/listener.go index 5b1c5850d1..19818e7e1d 100644 --- a/network/tunnel/transport/listener.go +++ b/network/tunnel/transport/listener.go @@ -1,8 +1,8 @@ package transport import ( - "github.com/micro/go-micro/v2/network/tunnel" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/network/tunnel" + "github.com/asim/go-micro/v3/transport" ) type tunListener struct { diff --git a/network/tunnel/transport/transport.go b/network/tunnel/transport/transport.go index aa426b5025..bbb8a08cb8 100644 --- a/network/tunnel/transport/transport.go +++ b/network/tunnel/transport/transport.go @@ -4,8 +4,8 @@ package transport import ( "context" - "github.com/micro/go-micro/v2/network/tunnel" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/network/tunnel" + "github.com/asim/go-micro/v3/transport" ) type tunTransport struct { diff --git a/network/tunnel/tunnel.go b/network/tunnel/tunnel.go index 4075029b30..b4bb4405c6 100644 --- a/network/tunnel/tunnel.go +++ b/network/tunnel/tunnel.go @@ -5,7 +5,7 @@ import ( "errors" "time" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) const ( diff --git a/network/tunnel/tunnel_test.go b/network/tunnel/tunnel_test.go index 1c6203477b..50116ff94c 100644 --- a/network/tunnel/tunnel_test.go +++ b/network/tunnel/tunnel_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) func testBrokenTunAccept(t *testing.T, tun Tunnel, wait chan bool, wg *sync.WaitGroup) { diff --git a/network/util.go b/network/util.go index 4735555603..59e3ec4520 100644 --- a/network/util.go +++ b/network/util.go @@ -1,8 +1,8 @@ package network import ( - pbNet "github.com/micro/go-micro/v2/network/proto" - "github.com/micro/go-micro/v2/network/router" + pbNet "github.com/asim/go-micro/v3/network/proto" + "github.com/asim/go-micro/v3/network/router" ) // routeToProto encodes route into protobuf and returns it diff --git a/options.go b/options.go index 13c68edd09..0a00f99483 100644 --- a/options.go +++ b/options.go @@ -4,20 +4,20 @@ import ( "context" "time" + "github.com/asim/go-micro/v3/auth" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/cmd" + "github.com/asim/go-micro/v3/config" + "github.com/asim/go-micro/v3/debug/profile" + "github.com/asim/go-micro/v3/debug/trace" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/runtime" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/server" + "github.com/asim/go-micro/v3/store" + "github.com/asim/go-micro/v3/transport" "github.com/micro/cli/v2" - "github.com/micro/go-micro/v2/auth" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/cmd" - "github.com/micro/go-micro/v2/config" - "github.com/micro/go-micro/v2/debug/profile" - "github.com/micro/go-micro/v2/debug/trace" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/runtime" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/server" - "github.com/micro/go-micro/v2/store" - "github.com/micro/go-micro/v2/transport" ) // Options for micro service diff --git a/plugins/plugin.go b/plugins/plugin.go index 47acd66516..246a14aa22 100644 --- a/plugins/plugin.go +++ b/plugins/plugin.go @@ -11,13 +11,13 @@ import ( "strings" "text/template" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/cmd" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" - "github.com/micro/go-micro/v2/server" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/cmd" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" + "github.com/asim/go-micro/v3/server" + "github.com/asim/go-micro/v3/transport" ) // Plugin is a plugin loaded from a file diff --git a/plugins/registry/memory/go.mod b/plugins/registry/memory/go.mod new file mode 100644 index 0000000000..f60bdb46ee --- /dev/null +++ b/plugins/registry/memory/go.mod @@ -0,0 +1,8 @@ +module github.com/asim/go-micro/plugins/registry/memory/v2 + +go 1.15 + +require ( + github.com/google/uuid v1.1.5 + github.com/micro/go-micro/v2 v2.9.1 +) diff --git a/plugins/registry/memory/go.sum b/plugins/registry/memory/go.sum new file mode 100644 index 0000000000..2692a12a57 --- /dev/null +++ b/plugins/registry/memory/go.sum @@ -0,0 +1,538 @@ +cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= +cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= +cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= +cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= +cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= +cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= +cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= +cloud.google.com/go/datastore v1.0.0/go.mod h1:LXYbyblFSglQ5pkeyhO+Qmw7ukd3C+pD7TKLgZqpHYE= +cloud.google.com/go/pubsub v1.0.1/go.mod h1:R0Gpsv3s54REJCy4fxDixWD93lHJMoZTyQ2kNxGRt3I= +cloud.google.com/go/storage v1.0.0/go.mod h1:IhtSnM/ZTZV8YYJWCY8RULGVqBDmpoyjwiyrjsg+URw= +contrib.go.opencensus.io/exporter/ocagent v0.4.12/go.mod h1:450APlNTSR6FrvC3CTRqYosuDstRB9un7SOx2k/9ckA= +dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= +github.com/Azure/azure-sdk-for-go v32.4.0+incompatible/go.mod h1:9XXNKU+eRnpl9moKnB4QOLf1HestfXbmab5FXxiDBjc= +github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78/go.mod h1:LmzpDX56iTiv29bbRTIsUNlaFfuhWRQBWjQdVyAevI8= +github.com/Azure/go-autorest/autorest v0.1.0/go.mod h1:AKyIcETwSUFxIcs/Wnq/C+kwCtlEYGUVd7FPNb2slmg= +github.com/Azure/go-autorest/autorest v0.5.0/go.mod h1:9HLKlQjVBH6U3oDfsXOeVc56THsLPw1L03yban4xThw= +github.com/Azure/go-autorest/autorest/adal v0.1.0/go.mod h1:MeS4XhScH55IST095THyTxElntu7WqB7pNbZo8Q5G3E= +github.com/Azure/go-autorest/autorest/adal v0.2.0/go.mod h1:MeS4XhScH55IST095THyTxElntu7WqB7pNbZo8Q5G3E= +github.com/Azure/go-autorest/autorest/azure/auth v0.1.0/go.mod h1:Gf7/i2FUpyb/sGBLIFxTBzrNzBo7aPXXE3ZVeDRwdpM= +github.com/Azure/go-autorest/autorest/azure/cli v0.1.0/go.mod h1:Dk8CUAt/b/PzkfeRsWzVG9Yj3ps8mS8ECztu43rdU8U= +github.com/Azure/go-autorest/autorest/date v0.1.0/go.mod h1:plvfp3oPSKwf2DNjlBjWF/7vwR+cUD/ELuzDCXwHUVA= +github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0= +github.com/Azure/go-autorest/autorest/to v0.2.0/go.mod h1:GunWKJp1AEqgMaGLV+iocmRAJWqST1wQYhyyjXJ3SJc= +github.com/Azure/go-autorest/autorest/validation v0.1.0/go.mod h1:Ha3z/SqBeaalWQvokg3NZAlQTalVMtOIAs1aGK7G6u8= +github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc= +github.com/Azure/go-autorest/tracing v0.1.0/go.mod h1:ROEEAFwXycQw7Sn3DXNtEedEvdeRAgDr0izn4z5Ij88= +github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= +github.com/Microsoft/go-winio v0.4.15-0.20190919025122-fc70bd9a86b5/go.mod h1:tTuCMEN+UleMWgg9dVx4Hu52b1bJo+59jBh3ajtinzw= +github.com/Microsoft/hcsshim v0.8.7-0.20191101173118-65519b62243c/go.mod h1:7xhjOwRV2+0HXGmM0jxaEu+ZiXJFoVZOTfL/dmqbrD8= +github.com/OpenDNS/vegadns2client v0.0.0-20180418235048-a3fa4a771d87/go.mod h1:iGLljf5n9GjT6kc0HBvyI1nOKnGQbNB66VzSNbK5iks= +github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= +github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= +github.com/akamai/AkamaiOPEN-edgegrid-golang v0.9.0/go.mod h1:zpDJeKyp9ScW4NNrbdr+Eyxvry3ilGPewKoXw3XGN1k= +github.com/alangpierce/go-forceexport v0.0.0-20160317203124-8f1d6941cd75/go.mod h1:uAXEEpARkRhCZfEvy/y0Jcc888f9tHCc1W7/UeEtreE= +github.com/alcortesm/tgz v0.0.0-20161220082320-9c5fe88206d7/go.mod h1:6zEj6s6u/ghQa61ZWa/C2Aw3RkjiTBOix7dkqa1VLIs= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/aliyun/alibaba-cloud-sdk-go v0.0.0-20190808125512-07798873deee/go.mod h1:myCDvQSzCW+wB1WAlocEru4wMGJxy+vlxHdhegi1CDQ= +github.com/aliyun/aliyun-oss-go-sdk v0.0.0-20190307165228-86c17b95fcd5/go.mod h1:T/Aws4fEfogEE9v+HPhhw+CntffsBHJ8nXQCwKr0/g8= +github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c= +github.com/apache/thrift v0.12.0/go.mod h1:cp2SuWMxlEZw2r+iP2GNCdIi4C1qmUzdZFSVb+bacwQ= +github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs= +github.com/aws/aws-sdk-go v1.23.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= +github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f/go.mod h1:AuiFmCCPBSrqvVMvuqFuk0qogytodnVFVSN5CeJB8Gc= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= +github.com/bitly/go-simplejson v0.5.0/go.mod h1:cXHtHw4XUPsvGaxgjIAn8PhEWG9NfngEKAMDJEczWVA= +github.com/blang/semver v3.1.0+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk= +github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869/go.mod h1:Ekp36dRnpXw/yCqJaO+ZrUyxD+3VXMFFr56k5XYrpB4= +github.com/bwmarrin/discordgo v0.20.2/go.mod h1:O9S4p+ofTFwB02em7jkpkV8M3R0/PUVOwN61zSZ0r4Q= +github.com/caddyserver/certmagic v0.10.6/go.mod h1:Y8jcUBctgk/IhpAzlHKfimZNyXCkfGgRTC0orl8gROQ= +github.com/cenkalti/backoff/v4 v4.0.0/go.mod h1:eEew/i+1Q6OrCDZh3WiXYv3+nJwBASZ8Bog/87DQnVg= +github.com/census-instrumentation/opencensus-proto v0.2.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/cheekybits/genny v1.0.0/go.mod h1:+tQajlRqAUrPI7DOSpB0XAqZYtQakVtB7wXkRAgjxjQ= +github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cloudflare/cloudflare-go v0.10.2/go.mod h1:qhVI5MKwBGhdNU89ZRz2plgYutcJ5PCekLxXn56w6SY= +github.com/containerd/cgroups v0.0.0-20190919134610-bf292b21730f/go.mod h1:OApqhQ4XNSNC13gXIwDjhOQxjWa/NxkwZXJ1EvqT0ko= +github.com/containerd/console v0.0.0-20180822173158-c12b1e7919c1/go.mod h1:Tj/on1eG8kiEhd0+fhSDzsPAFESxzBBvdyEgyryXffw= +github.com/containerd/containerd v1.3.0-beta.2.0.20190828155532-0293cbd26c69/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/containerd/containerd v1.3.0/go.mod h1:bC6axHOhabU15QhwfG7w5PipXdVtMXFTttgp+kVtyUA= +github.com/containerd/continuity v0.0.0-20190426062206-aaeac12a7ffc/go.mod h1:GL3xCUCBDV3CZiTSEKksMWbLE66hEyuu9qyDOOqM47Y= +github.com/containerd/fifo v0.0.0-20190226154929-a9fb20d87448/go.mod h1:ODA38xgv3Kuk8dQz2ZQXpnv/UZZUHUCL7pnLehbXgQI= +github.com/containerd/go-runc v0.0.0-20180907222934-5a6d9f37cfa3/go.mod h1:IV7qH3hrUgRmyYrtgEeGWJfWbgcHL9CSRruz2Vqcph0= +github.com/containerd/ttrpc v0.0.0-20190828154514-0e0f228740de/go.mod h1:PvCDdDGpgqzQIzDW1TphrGLssLDZp2GuS+X5DkEJB8o= +github.com/containerd/typeurl v0.0.0-20180627222232-a93fcdb778cd/go.mod h1:Cm3kwCdlkCfMSHURc+r6fwoGH6/F1hH3S4sg0rLFWPc= +github.com/coreos/bbolt v1.3.3/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= +github.com/coreos/etcd v3.3.18+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= +github.com/coreos/go-semver v0.3.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= +github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/cpu/goacmedns v0.0.1/go.mod h1:sesf/pNnCYwUevQEQfEwY0Y3DydlQWSGZbaMElOWxok= +github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/cpuguy83/go-md2man/v2 v2.0.0/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= +github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8= +github.com/dnaeon/go-vcr v0.0.0-20180814043457-aafff18a5cc2/go.mod h1:aBB1+wY4s93YsC3HHjMBMrwTj2R9FHDzUr9KyGc8n1E= +github.com/dnsimple/dnsimple-go v0.30.0/go.mod h1:O5TJ0/U6r7AfT8niYNlmohpLbCSG+c71tQlGr9SeGrg= +github.com/docker/distribution v2.7.1+incompatible/go.mod h1:J2gT2udsDAN96Uj4KfcMRqY0/ypR+oyYUYmja8H+y+w= +github.com/docker/docker v1.4.2-0.20191101170500-ac7306503d23/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk= +github.com/docker/go-connections v0.4.0/go.mod h1:Gbd7IOopHjR8Iph03tsViu4nIes5XhDvyHbTtUxmeec= +github.com/docker/go-units v0.4.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= +github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= +github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= +github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= +github.com/ef-ds/deque v1.0.4-0.20190904040645-54cb57c252a1/go.mod h1:HvODWzv6Y6kBf3Ah2WzN1bHjDUezGLaAhwuWVwfpEJs= +github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o= +github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= +github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c= +github.com/evanphx/json-patch/v5 v5.0.0/go.mod h1:G79N1coSVB93tBe7j6PhzjmR3/2VvlbKOFpnXhI9Bw4= +github.com/exoscale/egoscale v0.18.1/go.mod h1:Z7OOdzzTOz1Q1PjQXumlz9Wn/CddH0zSYdCF3rnBKXE= +github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= +github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= +github.com/forestgiant/sliceutil v0.0.0-20160425183142-94783f95db6c/go.mod h1:pFdJbAhRf7rh6YYMUdIQGyzne6zYL1tCUW8QV2B3UfY= +github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/fsouza/go-dockerclient v1.6.0/go.mod h1:YWwtNPuL4XTX1SKJQk86cWPmmqwx+4np9qfPbb+znGc= +github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= +github.com/gliderlabs/ssh v0.2.2/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= +github.com/go-acme/lego/v3 v3.4.0/go.mod h1:xYbLDuxq3Hy4bMUT1t9JIuz6GWIWb3m5X+TeTHYaT7M= +github.com/go-cmd/cmd v1.0.5/go.mod h1:y8q8qlK5wQibcw63djSl/ntiHUHXHGdCkPk0j4QeW4s= +github.com/go-errors/errors v1.0.1/go.mod h1:f4zRHt4oKfwPJE5k8C9vpYG+aDHdBFUsgrm6/TyX73Q= +github.com/go-git/gcfg v1.5.0/go.mod h1:5m20vg6GwYabIxaOonVkTdrILxQMpEShl1xiMF4ua+E= +github.com/go-git/go-billy/v5 v5.0.0/go.mod h1:pmpqyWchKfYfrkb/UVH4otLvyi/5gJlGI4Hb3ZqZ3W0= +github.com/go-git/go-git-fixtures/v4 v4.0.1/go.mod h1:m+ICp2rF3jDhFgEZ/8yziagdT1C+ZpZcrJjappBCDSw= +github.com/go-git/go-git/v5 v5.1.0/go.mod h1:ZKfuPUoY1ZqIG4QG9BDBh3G4gLM5zvPuSJAozQrZuyM= +github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= +github.com/go-ini/ini v1.44.0/go.mod h1:ByCAeIL28uOIIG0E3PJtZPDL8WnHpFKFOtgjp+3Ies8= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible/go.mod h1:qf9acutJ8cwBUhm1bqgz6Bei9/C/c93FPDljKWwsOgM= +github.com/gobwas/httphead v0.0.0-20180130184737-2c6c146eadee/go.mod h1:L0fX3K22YWvt/FAX9NnzrNzcI4wNYi9Yku4O0LKYflo= +github.com/gobwas/pool v0.2.0/go.mod h1:q8bcK0KcYlCgd9e7WYLm9LpyS+YeLd8JVDW6WezmKEw= +github.com/gobwas/ws v1.0.3/go.mod h1:szmBTxLgaFppYjEmNtny/v3w89xOydFnnZMcgRRu/EM= +github.com/godbus/dbus v0.0.0-20190422162347-ade71ed3457e/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= +github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/goji/httpauth v0.0.0-20160601135302-2da839ab0f4d/go.mod h1:nnjvkQ9ptGaCkuDUx6wNykzzlUixGxvkme+H/lnzb+A= +github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= +github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= +github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.0/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.5/go.mod h1:6O5/vntMXwX2lRkT1hjjk0nAC1IDOTvTlVgjlRvqsdk= +github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8= +github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA= +github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs= +github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w= +github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= +github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= +github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/pprof v0.0.0-20190515194954-54271f7e092f/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= +github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/google/uuid v1.1.5 h1:kxhtnfFVi+rYdOALN0B3k9UT86zVJKfBimRaciULW4I= +github.com/google/uuid v1.1.5/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= +github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= +github.com/gophercloud/gophercloud v0.3.0/go.mod h1:vxM41WHh5uqHVBMZHzuwNOHh8XEoIEcSTewFxm1c5g8= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= +github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ= +github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/mux v1.7.3/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs= +github.com/gorilla/websocket v1.2.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/grpc-ecosystem/go-grpc-middleware v1.1.0/go.mod h1:f5nM7jw/oeRSadq3xCzHAvxcr8HZnzsqU6ILg/0NiiE= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= +github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI= +github.com/hashicorp/errwrap v0.0.0-20141028054710-7554cd9344ce/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-multierror v0.0.0-20161216184304-ed905158d874/go.mod h1:JMRHfdO9jKNzS/+BTlxCjKNQHg/jZAft8U7LloJvN7I= +github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.3/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= +github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/iij/doapi v0.0.0-20190504054126-0bbf12d6d7df/go.mod h1:QMZY7/J/KSQEhKWFeDesPjMj+wCHReeknARU3wqlyN4= +github.com/imdario/mergo v0.3.9/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA= +github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99/go.mod h1:1lJo3i6rXxKeerYnT8Nvf0QmHCRC1n8sfWVwXF2Frvo= +github.com/jessevdk/go-flags v1.4.0/go.mod h1:4FA24M0QyGHXBuZZK/XkWh8h0e1EYbRYJSGM75WSRxI= +github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af/go.mod h1:Nht3zPeWKUH0NzdCt2Blrr5ys8VGpn0CEB0cQHVjt7k= +github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= +github.com/json-iterator/go v1.1.5/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/json-iterator/go v1.1.7/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/json-iterator/go v1.1.9/go.mod h1:KdQUCv79m/52Kvf8AW2vK1V8akMuk1QjK/uOdHXbAo4= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/kevinburke/ssh_config v0.0.0-20190725054713-01f96b0aa0cd/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM= +github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/klauspost/cpuid v1.2.3/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= +github.com/kolo/xmlrpc v0.0.0-20190717152603-07c4ee3fd181/go.mod h1:o03bZfuBwAXHetKXuInt4S7omeXUu62/A845kiycsSQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= +github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= +github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= +github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= +github.com/labbsr0x/bindman-dns-webhook v1.0.2/go.mod h1:p6b+VCXIR8NYKpDr8/dg1HKfQoRHCdcsROXKvmoehKA= +github.com/labbsr0x/goh v1.0.1/go.mod h1:8K2UhVoaWXcCU7Lxoa2omWnC8gyW8px7/lmO61c027w= +github.com/lib/pq v1.3.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/linode/linodego v0.10.0/go.mod h1:cziNP7pbvE3mXIPneHj0oRY8L1WtGEIKlZ8LANE4eXA= +github.com/liquidweb/liquidweb-go v1.6.0/go.mod h1:UDcVnAMDkZxpw4Y7NOHkqoeiGacVLEIG/i5J9cyixzQ= +github.com/lucas-clemente/quic-go v0.14.1/go.mod h1:Vn3/Fb0/77b02SGhQk36KzOUmXgVpFfizUfW5WMaqyU= +github.com/marten-seemann/chacha20 v0.2.0/go.mod h1:HSdjFau7GzYRj+ahFNwsO3ouVJr1HFkWoEwNDb4TMtE= +github.com/marten-seemann/qpack v0.1.0/go.mod h1:LFt1NU/Ptjip0C2CPkhimBz5CGE3WGDAUWqna+CNTrI= +github.com/marten-seemann/qtls v0.4.1/go.mod h1:pxVXcHHw1pNIt8Qo0pwSYQEoZ8yYOOPXTCZLQQunvRc= +github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= +github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= +github.com/mattn/go-tty v0.0.0-20180219170247-931426f7535a/go.mod h1:XPvLUNfbS4fJH25nqRHfWLMa1ONC8Amw+mIA639KxkE= +github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/micro/cli/v2 v2.1.2/go.mod h1:EguNh6DAoWKm9nmk+k/Rg0H3lQnDxqzu5x5srOtGtYg= +github.com/micro/go-micro v1.18.0 h1:gP70EZVHpJuUIT0YWth192JmlIci+qMOEByHm83XE9E= +github.com/micro/go-micro/v2 v2.9.1 h1:+S9koIrNWARjpP6k2TZ7kt0uC9zUJtNXzIdZTZRms7Q= +github.com/micro/go-micro/v2 v2.9.1/go.mod h1:x55ZM3Puy0FyvvkR3e0ha0xsE9DFwfPSUMWAIbFY0SY= +github.com/miekg/dns v1.1.15/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= +github.com/miekg/dns v1.1.27 h1:aEH/kqUzUxGJ/UHcEKdJY+ugH6WEzsEBBSPa8zuy1aM= +github.com/miekg/dns v1.1.27/go.mod h1:KNUDUusw/aVsxyTYZM1oqvCicbwhgbNgztCETuNZ7xM= +github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= +github.com/mitchellh/go-vnc v0.0.0-20150629162542-723ed9867aed/go.mod h1:3rdaFaCv4AyBgu5ALFM0+tSuHrBh6v692nyQe3ikrq0= +github.com/mitchellh/hashstructure v1.0.0/go.mod h1:QjSHrPWS+BGUVBYkbTZWEnOh3G1DutKwClXU/ABz6AQ= +github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y= +github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/morikuni/aec v0.0.0-20170113033406-39771216ff4c/go.mod h1:BbKIizmSmc5MMPqRYbxO4ZU0S0+P200+tUnFx7PXmsc= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/namedotcom/go v0.0.0-20180403034216-08470befbe04/go.mod h1:5sN+Lt1CaY4wsPvgQH/jsuJi4XO2ssZbdsIizr4CVC8= +github.com/nats-io/jwt v0.3.2/go.mod h1:/euKqTS1ZD+zzjYrY7pseZrTtWQSjujC7xjPc8wL6eU= +github.com/nats-io/nats-server/v2 v2.1.6/go.mod h1:BL1NOtaBQ5/y97djERRVWNouMW7GT3gxnmbE/eC8u8A= +github.com/nats-io/nats.go v1.9.2/go.mod h1:AjGArbfyR50+afOUotNX2Xs5SYHf+CoOa5HH1eEl2HE= +github.com/nats-io/nkeys v0.1.3/go.mod h1:xpnFELMwJABBLVhffcfd1MZx6VsNRFpEugbxziKVo7w= +github.com/nats-io/nkeys v0.1.4/go.mod h1:XdZpAbhgyyODYqjTawOnIOI7VlbKSarI9Gfy1tqEu/s= +github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms= +github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= +github.com/nlopes/slack v0.6.1-0.20191106133607-d06c2a2b3249/go.mod h1:JzQ9m3PMAqcpeCam7UaHSuBuupz7CmpjehYMayT6YOk= +github.com/nrdcg/auroradns v1.0.0/go.mod h1:6JPXKzIRzZzMqtTDgueIhTi6rFf1QvYE/HzqidhOhjw= +github.com/nrdcg/dnspod-go v0.4.0/go.mod h1:vZSoFSFeQVm2gWLMkyX61LZ8HI3BaqtHZWgPTGKr6KQ= +github.com/nrdcg/goinwx v0.6.1/go.mod h1:XPiut7enlbEdntAqalBIqcYcTEVhpv/dKWgDCX2SwKQ= +github.com/nrdcg/namesilo v0.2.1/go.mod h1:lwMvfQTyYq+BbjJd30ylEG4GPSS6PII0Tia4rRpRiyw= +github.com/olekukonko/tablewriter v0.0.1/go.mod h1:vsDQFd/mU46D+Z4whnwzcISnGGzXWMclvtLoiIKAKIo= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/opencontainers/go-digest v0.0.0-20180430190053-c9281466c8b2/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQYUd2OVphdqWwCJHrFt2s= +github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0= +github.com/opencontainers/runc v0.0.0-20190115041553-12f6a991201f/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= +github.com/opencontainers/runc v0.1.1/go.mod h1:qT5XzbpPznkRYVz/mWwUaVBUv2rmF59PVA73FjuZG0U= +github.com/opencontainers/runtime-spec v0.1.2-0.20190507144316-5b71a03e2700/go.mod h1:jwyrGlmzljRJv/Fgzds9SsS/C5hL+LL3ko9hs6T5lQ0= +github.com/opencontainers/runtime-tools v0.0.0-20181011054405-1d69bd0f9c39/go.mod h1:r3f7wjNzSs2extwzU3Y+6pKfobzPh+kKFJ3ofN+3nfs= +github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o= +github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw= +github.com/oracle/oci-go-sdk v7.0.0+incompatible/go.mod h1:VQb79nF8Z2cwLkLS35ukwStZIg5F66tcBccjip/j888= +github.com/ovh/go-ovh v0.0.0-20181109152953-ba5adb4cf014/go.mod h1:joRatxRJaZBsY3JAOEMcoOp05CnZzsx4scTxi95DHyQ= +github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c/go.mod h1:X07ZCGwUbLaax7L0S3Tw4hpejzu63ZrrQiUe6W0hcy0= +github.com/patrickmn/go-cache v2.1.0+incompatible/go.mod h1:3Qf8kWWT7OJRJbdiICTKqZju1ZixQ/KpMGzzAfe6+WQ= +github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_golang v1.1.0/go.mod h1:I1FGZT9+L76gKKOs5djB6ezCbFQP1xR9D75/vuwEF3g= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.2.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.0-20190117184657-bf6a532e95b1/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/procfs v0.0.3/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/prometheus/procfs v0.0.5/go.mod h1:4A/X28fw3Fc593LaREMrKMqOKvUAntwMDaekg4FpcdQ= +github.com/rainycape/memcache v0.0.0-20150622160815-1031fa0ce2f2/go.mod h1:7tZKcyumwBO6qip7RNQ5r77yrssm9bfCowcLEBcU5IA= +github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= +github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= +github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= +github.com/sacloud/libsacloud v1.26.1/go.mod h1:79ZwATmHLIFZIMd7sxA3LwzVy/B77uj3LDoToVTxDoQ= +github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0= +github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= +github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/sirupsen/logrus v1.4.1/go.mod h1:ni0Sbl8bgC9z8RoU9G6nDWqqs/fq4eDPysMBDgk/93Q= +github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= +github.com/skratchdot/open-golang v0.0.0-20160302144031-75fb7ed4208c/go.mod h1:sUM3LWHvSMaG192sy56D9F7CNvL7jUJVXoqM1QKLnog= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v0.0.0-20190330032615-68dc04aab96a/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= +github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= +github.com/syndtr/gocapability v0.0.0-20170704070218-db04d3cc01c8/go.mod h1:hkRG7XYTFWNJGYcbNJQlaLq0fg1yr4J4t/NcTQtrfww= +github.com/technoweenie/multipartstreamer v1.0.1/go.mod h1:jNVxdtShOxzAsukZwTSw6MDx5eUJoiEBsSvzDU9uzog= +github.com/timewasted/linode v0.0.0-20160829202747-37e84520dcf7/go.mod h1:imsgLplxEC/etjIhdr3dNzV3JeT27LbVu5pYWm0JCBY= +github.com/tmc/grpc-websocket-proxy v0.0.0-20200122045848-3419fae592fc/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= +github.com/transip/gotransip v0.0.0-20190812104329-6d8d9179b66f/go.mod h1:i0f4R4o2HM0m3DZYQWsj6/MEowD57VzoH0v3d7igeFY= +github.com/uber-go/atomic v1.3.2/go.mod h1:/Ct5t2lcmbJ4OSe/waGBoaVvVqtO0bmtfVNex1PFV8g= +github.com/urfave/cli v0.0.0-20171014202726-7bc6a0acffa5/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= +github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= +github.com/vultr/govultr v0.1.4/go.mod h1:9H008Uxr/C4vFNGLqKx232C206GL0PBHzOP0809bGNA= +github.com/xanzy/ssh-agent v0.2.1/go.mod h1:mLlQY/MoOhWBj+gOGMQkOeiEvkx+8pJSI+0Bx9h2kr4= +github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= +github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= +github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= +github.com/xeipuuv/gojsonschema v1.1.0/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs= +github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= +go.etcd.io/bbolt v1.3.4/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ= +go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= +go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= +go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8= +go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ= +go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= +go.uber.org/ratelimit v0.0.0-20180316092928-c15da0234277/go.mod h1:2X8KaoNd1J0lZV+PxJk/5+DGbO/tpwLR1m++a7FnB/Y= +go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= +go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= +go.uber.org/zap v1.13.0/go.mod h1:zwrFLgMcdUuIBviXEYEH1YKNaOBnKXsx2IPda5bBwHM= +golang.org/x/crypto v0.0.0-20180621125126-a49355c7e3f8/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190211182817-74369b46fc67/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190219172222-a4c6cb3142f2/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= +golang.org/x/crypto v0.0.0-20190418165655-df01cb2cc480/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= +golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190605123033-f99c8df09eb5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190701094942-4def268fd1a4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190927123631-a832865fa7ad/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200323165209-0ec3e9974c59/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37 h1:cg5LA/zNPRzIXIWSCxQW10Rvpy94aQh3LT/ShoCpkHw= +golang.org/x/crypto v0.0.0-20200510223506-06a226fb4e37/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= +golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= +golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= +golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= +golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= +golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= +golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= +golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= +golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= +golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190909230951-414d861bb4ac/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f/go.mod h1:5qLYkcX4OjUUV8bRuDixDT3tpyyb+LUpUlRWLxfhWrs= +golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= +golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= +golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= +golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= +golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= +golang.org/x/net v0.0.0-20180611182652-db08ff08e862/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190125091013-d26f9f9a57f3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190228165749-92fc7df08ae7/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190501004415-9ce7a6920f09/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190724013045-ca1201d0de80/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190923162816-aa69164e4478/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20190930134127-c5a3c61f89f3/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20191027093000-83d349e8ac1a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200301022130-244492dfa37a/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2 h1:eDrdRpKgkcCqKZQwyZRyeFZgfqt37SL7Kv3tok06cKE= +golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A= +golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= +golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180622082034-63fc586f45fe/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181122145206-62eef0e2fa9b/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190209173611-3b5209105503/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190221075227-b4e8571b14e0/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190606165138-5da285871e9c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190801041406-cbf593c0f2f3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190924154521-2837fb4f24fe/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20200523222454-059865788121 h1:rITEj+UZHYC927n8GT97eC3zrpzXdb/voyeOuVKS46o= +golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20190921001708-c4c64cad1fd0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= +golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= +golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191125144606-a911d9008d1f/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= +golang.org/x/tools v0.0.0-20191216052735-49a3e744a425/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/tools v0.0.0-20191216173652-a0e659d51361/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= +golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= +google.golang.org/api v0.3.1/go.mod h1:6wY9I6uQWHQ8EM57III9mq/AjF+i8G65rmVagqKMtkk= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M= +google.golang.org/api v0.8.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.9.0/go.mod h1:o4eAsZoiT+ibD93RtjEohWalFOjRDx6CVaqeizhEnKg= +google.golang.org/api v0.14.0/go.mod h1:iLdEw5Ide6rF15KTC1Kkl0iskquN2gFfn9o9XIsbkAI= +google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= +google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.1/go.mod h1:i06prIuMbXzDqacNJfV5OdTW448YApPu5ww/cMBSeb0= +google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= +google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190425155659-357c62f0e4bb/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190801165951-fa694d86fc64/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc= +google.golang.org/genproto v0.0.0-20190911173649-1774047e7e51/go.mod h1:IbNlFCBrqXvoKpeg0TB2l7cyZUmoaFKYIwrEpbDKLA8= +google.golang.org/genproto v0.0.0-20191216164720-4f79533eabd1/go.mod h1:n3cpQtvxv34hfy77yVDNjmbRyujviMdxYliBSkLhpCc= +google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= +google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.19.1/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= +google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +google.golang.org/grpc v1.22.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg= +google.golang.org/grpc v1.26.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk= +google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8= +google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0= +google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM= +google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE= +google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo= +google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI= +gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/h2non/gock.v1 v1.0.15/go.mod h1:sX4zAkdYX1TRGJ2JY156cFspQn4yRWn6p9EMdODlynE= +gopkg.in/ini.v1 v1.42.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ini.v1 v1.44.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= +gopkg.in/ns1/ns1-go.v2 v2.0.0-20190730140822-b51389932cbc/go.mod h1:VV+3haRsgDiVLxyifmMBrBIuCWFBPYKbRssXB9z67Hw= +gopkg.in/resty.v1 v1.9.1/go.mod h1:vo52Hzryw9PnPHcJfPsBiFW62XhNx5OczbV9y+IMpgc= +gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= +gopkg.in/square/go-jose.v2 v2.3.1/go.mod h1:M9dMgbHiYLoDGQrXy7OpJDJWiKiU//h+vD76mk0e1AI= +gopkg.in/telegram-bot-api.v4 v4.6.4/go.mod h1:5DpGO5dbumb40px+dXcwCpcjmeHNYLpk0bp3XRNvWDM= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI= +gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= +gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= +honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= +k8s.io/kubernetes v1.13.0/go.mod h1:ocZa8+6APFNC2tX1DZASIbocyYT5jHzqFVsY5aoB7Jk= +rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= +sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o= diff --git a/plugins/registry/memory/memory.go b/plugins/registry/memory/memory.go index 44f2243980..2bf585082f 100644 --- a/plugins/registry/memory/memory.go +++ b/plugins/registry/memory/memory.go @@ -6,9 +6,9 @@ import ( "sync" "time" - "github.com/google/uuid" "github.com/micro/go-micro/v2/logger" "github.com/micro/go-micro/v2/registry" + "github.com/google/uuid" ) var ( diff --git a/plugins/template.go b/plugins/template.go index 195afc762b..012b8f3e70 100644 --- a/plugins/template.go +++ b/plugins/template.go @@ -6,7 +6,7 @@ package main import ( "{{.Path}}" - "github.com/micro/go-micro/plugins" + "github.com/micro/go-micro/v3/plugins" ) var Plugin = plugin.Plugin{ diff --git a/registry/cache/cache.go b/registry/cache/cache.go index 4f4be7f097..35125918f0 100644 --- a/registry/cache/cache.go +++ b/registry/cache/cache.go @@ -7,9 +7,9 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/registry" - util "github.com/micro/go-micro/v2/util/registry" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/registry" + util "github.com/asim/go-micro/v3/util/registry" "golang.org/x/sync/singleflight" ) diff --git a/registry/mdns_registry.go b/registry/mdns_registry.go index cd44199229..c59fdaf624 100644 --- a/registry/mdns_registry.go +++ b/registry/mdns_registry.go @@ -15,9 +15,9 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/util/mdns" "github.com/google/uuid" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/util/mdns" ) var ( diff --git a/registry/memory.go b/registry/memory.go index 7b4fc55c23..3e74759223 100644 --- a/registry/memory.go +++ b/registry/memory.go @@ -5,8 +5,8 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/logger" "github.com/google/uuid" - "github.com/micro/go-micro/v2/logger" ) var ( diff --git a/runtime/default.go b/runtime/default.go index 28ecc4b8b6..262ddf0cc1 100644 --- a/runtime/default.go +++ b/runtime/default.go @@ -13,9 +13,9 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/runtime/local/git" "github.com/hpcloud/tail" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/runtime/local/git" ) // defaultNamespace to use if not provided as an option diff --git a/runtime/kubernetes/kubernetes.go b/runtime/kubernetes/kubernetes.go index c464d38179..5606ed8911 100644 --- a/runtime/kubernetes/kubernetes.go +++ b/runtime/kubernetes/kubernetes.go @@ -6,9 +6,9 @@ import ( "sync" "time" - log "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/runtime" - "github.com/micro/go-micro/v2/util/kubernetes/client" + log "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/runtime" + "github.com/asim/go-micro/v3/util/kubernetes/client" ) // action to take on runtime service diff --git a/runtime/kubernetes/logs.go b/runtime/kubernetes/logs.go index ac57d50c31..69381b04d8 100644 --- a/runtime/kubernetes/logs.go +++ b/runtime/kubernetes/logs.go @@ -9,9 +9,9 @@ import ( "strconv" "time" - "github.com/micro/go-micro/v2/runtime" - "github.com/micro/go-micro/v2/util/kubernetes/client" - "github.com/micro/go-micro/v2/util/log" + "github.com/asim/go-micro/v3/runtime" + "github.com/asim/go-micro/v3/util/kubernetes/client" + "github.com/asim/go-micro/v3/util/log" ) type klog struct { diff --git a/runtime/kubernetes/service.go b/runtime/kubernetes/service.go index 4cb71e37f6..da7d8e55c8 100644 --- a/runtime/kubernetes/service.go +++ b/runtime/kubernetes/service.go @@ -5,10 +5,10 @@ import ( "strings" "time" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/runtime" - "github.com/micro/go-micro/v2/util/kubernetes/api" - "github.com/micro/go-micro/v2/util/kubernetes/client" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/runtime" + "github.com/asim/go-micro/v3/util/kubernetes/api" + "github.com/asim/go-micro/v3/util/kubernetes/client" ) type service struct { diff --git a/runtime/local/build/build.go b/runtime/local/build/build.go index 568ddc3f6f..f2c27c02ff 100644 --- a/runtime/local/build/build.go +++ b/runtime/local/build/build.go @@ -2,7 +2,7 @@ package build import ( - "github.com/micro/go-micro/v2/runtime/local/source" + "github.com/asim/go-micro/v3/runtime/local/source" ) // Builder builds binaries diff --git a/runtime/local/build/docker/docker.go b/runtime/local/build/docker/docker.go index e164df556d..f95eccdd5e 100644 --- a/runtime/local/build/docker/docker.go +++ b/runtime/local/build/docker/docker.go @@ -8,9 +8,9 @@ import ( "os" "path/filepath" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/runtime/local/build" docker "github.com/fsouza/go-dockerclient" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/runtime/local/build" ) type Builder struct { diff --git a/runtime/local/build/go/golang.go b/runtime/local/build/go/golang.go index ce12124dbf..3a3b0e50d8 100644 --- a/runtime/local/build/go/golang.go +++ b/runtime/local/build/go/golang.go @@ -6,7 +6,7 @@ import ( "os/exec" "path/filepath" - "github.com/micro/go-micro/v2/runtime/local/build" + "github.com/asim/go-micro/v3/runtime/local/build" ) type Builder struct { diff --git a/runtime/local/local.go b/runtime/local/local.go index e8ed179e50..317cbf4296 100644 --- a/runtime/local/local.go +++ b/runtime/local/local.go @@ -2,7 +2,7 @@ package local import ( - "github.com/micro/go-micro/v2/runtime" + "github.com/asim/go-micro/v3/runtime" ) // NewRuntime returns a new local runtime diff --git a/runtime/local/process/os/os.go b/runtime/local/process/os/os.go index d285f7a4ca..8a1c88a7aa 100644 --- a/runtime/local/process/os/os.go +++ b/runtime/local/process/os/os.go @@ -10,7 +10,7 @@ import ( "strconv" "syscall" - "github.com/micro/go-micro/v2/runtime/local/process" + "github.com/asim/go-micro/v3/runtime/local/process" ) func (p *Process) Exec(exe *process.Executable) error { diff --git a/runtime/local/process/os/os_windows.go b/runtime/local/process/os/os_windows.go index d5c7869dd3..3cf8f95b11 100644 --- a/runtime/local/process/os/os_windows.go +++ b/runtime/local/process/os/os_windows.go @@ -7,7 +7,7 @@ import ( "os/exec" "strconv" - "github.com/micro/go-micro/v2/runtime/local/process" + "github.com/asim/go-micro/v3/runtime/local/process" ) func (p *Process) Exec(exe *process.Executable) error { diff --git a/runtime/local/process/os/process.go b/runtime/local/process/os/process.go index 8a939177c2..614b5ae2d9 100644 --- a/runtime/local/process/os/process.go +++ b/runtime/local/process/os/process.go @@ -2,7 +2,7 @@ package os import ( - "github.com/micro/go-micro/v2/runtime/local/process" + "github.com/asim/go-micro/v3/runtime/local/process" ) type Process struct{} diff --git a/runtime/local/process/process.go b/runtime/local/process/process.go index ffeae63eb4..65e3df216f 100644 --- a/runtime/local/process/process.go +++ b/runtime/local/process/process.go @@ -4,7 +4,7 @@ package process import ( "io" - "github.com/micro/go-micro/v2/runtime/local/build" + "github.com/asim/go-micro/v3/runtime/local/build" ) // Process manages a running process diff --git a/runtime/local/source/git/git.go b/runtime/local/source/git/git.go index 0f4129888a..aef7daf3be 100644 --- a/runtime/local/source/git/git.go +++ b/runtime/local/source/git/git.go @@ -6,8 +6,8 @@ import ( "path/filepath" "strings" + "github.com/asim/go-micro/v3/runtime/local/source" "github.com/go-git/go-git/v5" - "github.com/micro/go-micro/v2/runtime/local/source" ) // Source retrieves source code diff --git a/runtime/local/source/go/golang.go b/runtime/local/source/go/golang.go index 82df5920ce..0e34b50b8f 100644 --- a/runtime/local/source/go/golang.go +++ b/runtime/local/source/go/golang.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "github.com/micro/go-micro/v2/runtime/local/source" + "github.com/asim/go-micro/v3/runtime/local/source" ) type Source struct { diff --git a/runtime/options.go b/runtime/options.go index dea936b9e0..25f8ee8189 100644 --- a/runtime/options.go +++ b/runtime/options.go @@ -4,7 +4,7 @@ import ( "context" "io" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3/client" ) type Option func(o *Options) diff --git a/runtime/service.go b/runtime/service.go index 8e28de1f2c..cb1af975c1 100644 --- a/runtime/service.go +++ b/runtime/service.go @@ -8,10 +8,10 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/runtime/local/build" - "github.com/micro/go-micro/v2/runtime/local/process" - proc "github.com/micro/go-micro/v2/runtime/local/process/os" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/runtime/local/build" + "github.com/asim/go-micro/v3/runtime/local/process" + proc "github.com/asim/go-micro/v3/runtime/local/process/os" ) type service struct { diff --git a/selector/common_test.go b/selector/common_test.go index da084daf79..1c679af8a1 100644 --- a/selector/common_test.go +++ b/selector/common_test.go @@ -1,7 +1,7 @@ package selector import ( - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) var ( diff --git a/selector/default.go b/selector/default.go index 2692d8ba38..36a8cdc06c 100644 --- a/selector/default.go +++ b/selector/default.go @@ -3,8 +3,8 @@ package selector import ( "time" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/registry/cache" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/registry/cache" ) type registrySelector struct { diff --git a/selector/default_test.go b/selector/default_test.go index c6d6094f1a..936ed5870f 100644 --- a/selector/default_test.go +++ b/selector/default_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func TestRegistrySelector(t *testing.T) { diff --git a/selector/filter.go b/selector/filter.go index 11c3a1650e..b9646d4683 100644 --- a/selector/filter.go +++ b/selector/filter.go @@ -1,7 +1,7 @@ package selector import ( - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) // FilterEndpoint is an endpoint based Select Filter which will diff --git a/selector/filter_test.go b/selector/filter_test.go index 375bdc4517..b8a0224e7a 100644 --- a/selector/filter_test.go +++ b/selector/filter_test.go @@ -3,7 +3,7 @@ package selector import ( "testing" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func TestFilterEndpoint(t *testing.T) { diff --git a/selector/options.go b/selector/options.go index 898d2cc12b..a3f6eacd1a 100644 --- a/selector/options.go +++ b/selector/options.go @@ -3,7 +3,7 @@ package selector import ( "context" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) type Options struct { diff --git a/selector/selector.go b/selector/selector.go index 3e86ade8f0..1b23c1070f 100644 --- a/selector/selector.go +++ b/selector/selector.go @@ -4,7 +4,7 @@ package selector import ( "errors" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) // Selector builds on the registry as a mechanism to pick nodes diff --git a/selector/strategy.go b/selector/strategy.go index e68b9f2380..41e0ef5245 100644 --- a/selector/strategy.go +++ b/selector/strategy.go @@ -5,7 +5,7 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func init() { diff --git a/selector/strategy_test.go b/selector/strategy_test.go index 692c802f7f..4831d78e84 100644 --- a/selector/strategy_test.go +++ b/selector/strategy_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func TestStrategies(t *testing.T) { diff --git a/server/extractor.go b/server/extractor.go index 49655605a5..9514bc08a4 100644 --- a/server/extractor.go +++ b/server/extractor.go @@ -5,7 +5,7 @@ import ( "reflect" "strings" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func extractValue(v reflect.Type, d int) *registry.Value { diff --git a/server/extractor_test.go b/server/extractor_test.go index 8512f241db..09daaa0fad 100644 --- a/server/extractor_test.go +++ b/server/extractor_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) type testHandler struct{} diff --git a/server/mock/mock.go b/server/mock/mock.go index 0725cbfc65..84e9a2bc77 100644 --- a/server/mock/mock.go +++ b/server/mock/mock.go @@ -4,8 +4,8 @@ import ( "errors" "sync" + "github.com/asim/go-micro/v3/server" "github.com/google/uuid" - "github.com/micro/go-micro/v2/server" ) type MockServer struct { diff --git a/server/mock/mock_handler.go b/server/mock/mock_handler.go index de46fe52ff..33e932437e 100644 --- a/server/mock/mock_handler.go +++ b/server/mock/mock_handler.go @@ -1,8 +1,8 @@ package mock import ( - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/server" ) type MockHandler struct { diff --git a/server/mock/mock_subscriber.go b/server/mock/mock_subscriber.go index fb2bb7da24..d879fe489b 100644 --- a/server/mock/mock_subscriber.go +++ b/server/mock/mock_subscriber.go @@ -1,8 +1,8 @@ package mock import ( - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/server" ) type MockSubscriber struct { diff --git a/server/mock/mock_test.go b/server/mock/mock_test.go index 6c76af91a1..ae8ec86243 100644 --- a/server/mock/mock_test.go +++ b/server/mock/mock_test.go @@ -3,7 +3,7 @@ package mock import ( "testing" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/server" ) func TestMockServer(t *testing.T) { diff --git a/server/options.go b/server/options.go index 5b7e7d2edc..621155dde2 100644 --- a/server/options.go +++ b/server/options.go @@ -6,11 +6,11 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/debug/trace" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/debug/trace" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/transport" ) type Options struct { diff --git a/server/proto/server.pb.micro.go b/server/proto/server.pb.micro.go index cb1bdd47e2..c529bd50ec 100644 --- a/server/proto/server.pb.micro.go +++ b/server/proto/server.pb.micro.go @@ -11,9 +11,9 @@ import ( import ( context "context" - api "github.com/micro/go-micro/v2/api" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + api "github.com/asim/go-micro/v3/api" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/server/rpc_codec.go b/server/rpc_codec.go index 0d902c3d57..bbff1f44b4 100644 --- a/server/rpc_codec.go +++ b/server/rpc_codec.go @@ -4,14 +4,14 @@ import ( "bytes" "sync" - "github.com/micro/go-micro/v2/codec" - raw "github.com/micro/go-micro/v2/codec/bytes" - "github.com/micro/go-micro/v2/codec/grpc" - "github.com/micro/go-micro/v2/codec/json" - "github.com/micro/go-micro/v2/codec/jsonrpc" - "github.com/micro/go-micro/v2/codec/proto" - "github.com/micro/go-micro/v2/codec/protorpc" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/codec" + raw "github.com/asim/go-micro/v3/codec/bytes" + "github.com/asim/go-micro/v3/codec/grpc" + "github.com/asim/go-micro/v3/codec/json" + "github.com/asim/go-micro/v3/codec/jsonrpc" + "github.com/asim/go-micro/v3/codec/proto" + "github.com/asim/go-micro/v3/codec/protorpc" + "github.com/asim/go-micro/v3/transport" "github.com/oxtoacart/bpool" "github.com/pkg/errors" ) diff --git a/server/rpc_codec_test.go b/server/rpc_codec_test.go index 47289c6d47..c13a9d5401 100644 --- a/server/rpc_codec_test.go +++ b/server/rpc_codec_test.go @@ -5,8 +5,8 @@ import ( "errors" "testing" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/transport" ) // testCodec is a dummy codec that only knows how to encode nil bodies diff --git a/server/rpc_event.go b/server/rpc_event.go index f45f6c873f..ae47bf494f 100644 --- a/server/rpc_event.go +++ b/server/rpc_event.go @@ -1,8 +1,8 @@ package server import ( - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/transport" ) // event is a broker event we handle on the server transport diff --git a/server/rpc_handler.go b/server/rpc_handler.go index 7d2923ca00..cd03bf4fd0 100644 --- a/server/rpc_handler.go +++ b/server/rpc_handler.go @@ -3,7 +3,7 @@ package server import ( "reflect" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) type rpcHandler struct { diff --git a/server/rpc_request.go b/server/rpc_request.go index 767f1ac864..2f479fdc33 100644 --- a/server/rpc_request.go +++ b/server/rpc_request.go @@ -3,9 +3,9 @@ package server import ( "bytes" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/transport" - "github.com/micro/go-micro/v2/util/buf" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/transport" + "github.com/asim/go-micro/v3/util/buf" ) type rpcRequest struct { diff --git a/server/rpc_response.go b/server/rpc_response.go index d42a2ac868..f8dc306df2 100644 --- a/server/rpc_response.go +++ b/server/rpc_response.go @@ -3,8 +3,8 @@ package server import ( "net/http" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/transport" ) type rpcResponse struct { diff --git a/server/rpc_router.go b/server/rpc_router.go index 749a659118..0044c186b8 100644 --- a/server/rpc_router.go +++ b/server/rpc_router.go @@ -18,8 +18,8 @@ import ( "unicode" "unicode/utf8" - "github.com/micro/go-micro/v2/codec" - merrors "github.com/micro/go-micro/v2/errors" + "github.com/asim/go-micro/v3/codec" + merrors "github.com/asim/go-micro/v3/errors" ) var ( diff --git a/server/rpc_server.go b/server/rpc_server.go index eda90942f1..a6d98e0836 100644 --- a/server/rpc_server.go +++ b/server/rpc_server.go @@ -12,17 +12,17 @@ import ( "sync" "time" - "github.com/micro/go-micro/v2/broker" - "github.com/micro/go-micro/v2/codec" - raw "github.com/micro/go-micro/v2/codec/bytes" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/transport" - "github.com/micro/go-micro/v2/util/addr" - "github.com/micro/go-micro/v2/util/backoff" - mnet "github.com/micro/go-micro/v2/util/net" - "github.com/micro/go-micro/v2/util/socket" + "github.com/asim/go-micro/v3/broker" + "github.com/asim/go-micro/v3/codec" + raw "github.com/asim/go-micro/v3/codec/bytes" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/transport" + "github.com/asim/go-micro/v3/util/addr" + "github.com/asim/go-micro/v3/util/backoff" + mnet "github.com/asim/go-micro/v3/util/net" + "github.com/asim/go-micro/v3/util/socket" ) type rpcServer struct { diff --git a/server/rpc_stream.go b/server/rpc_stream.go index dbee673ed2..39513b7bda 100644 --- a/server/rpc_stream.go +++ b/server/rpc_stream.go @@ -6,7 +6,7 @@ import ( "io" "sync" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) // Implements the Streamer interface diff --git a/server/rpc_stream_test.go b/server/rpc_stream_test.go index f4b0b7bd5b..b6571f7737 100644 --- a/server/rpc_stream_test.go +++ b/server/rpc_stream_test.go @@ -9,9 +9,9 @@ import ( "testing" "time" + "github.com/asim/go-micro/v3/codec/json" + protoCodec "github.com/asim/go-micro/v3/codec/proto" "github.com/golang/protobuf/proto" - "github.com/micro/go-micro/v2/codec/json" - protoCodec "github.com/micro/go-micro/v2/codec/proto" ) // protoStruct implements proto.Message diff --git a/server/server.go b/server/server.go index a7c00fcac9..1ca39931ce 100644 --- a/server/server.go +++ b/server/server.go @@ -7,11 +7,11 @@ import ( "os/signal" "time" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/registry" + signalutil "github.com/asim/go-micro/v3/util/signal" "github.com/google/uuid" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/registry" - signalutil "github.com/micro/go-micro/v2/util/signal" ) // Server is a simple micro server abstraction diff --git a/server/subscriber.go b/server/subscriber.go index 6278175a7a..34f47d1596 100644 --- a/server/subscriber.go +++ b/server/subscriber.go @@ -4,7 +4,7 @@ import ( "fmt" "reflect" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) const ( diff --git a/service.go b/service.go index 7c1903211b..1f6b81a937 100644 --- a/service.go +++ b/service.go @@ -7,17 +7,17 @@ import ( "strings" "sync" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/cmd" - "github.com/micro/go-micro/v2/debug/handler" - "github.com/micro/go-micro/v2/debug/stats" - "github.com/micro/go-micro/v2/debug/trace" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/plugins" - "github.com/micro/go-micro/v2/server" - "github.com/micro/go-micro/v2/store" - signalutil "github.com/micro/go-micro/v2/util/signal" - "github.com/micro/go-micro/v2/util/wrapper" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/cmd" + "github.com/asim/go-micro/v3/debug/handler" + "github.com/asim/go-micro/v3/debug/stats" + "github.com/asim/go-micro/v3/debug/trace" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/plugins" + "github.com/asim/go-micro/v3/server" + "github.com/asim/go-micro/v3/store" + signalutil "github.com/asim/go-micro/v3/util/signal" + "github.com/asim/go-micro/v3/util/wrapper" ) type service struct { diff --git a/service_test.go b/service_test.go index 5d7b2c9a12..43ce8e3f28 100644 --- a/service_test.go +++ b/service_test.go @@ -6,10 +6,10 @@ import ( "sync" "testing" - "github.com/micro/go-micro/v2/client" - proto "github.com/micro/go-micro/v2/debug/proto" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/util/test" + "github.com/asim/go-micro/v3/client" + proto "github.com/asim/go-micro/v3/debug/proto" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/util/test" ) func testShutdown(wg *sync.WaitGroup, cancel func()) { diff --git a/store/options.go b/store/options.go index d89cb76619..4f7fa3f35e 100644 --- a/store/options.go +++ b/store/options.go @@ -4,7 +4,7 @@ import ( "context" "time" - "github.com/micro/go-micro/v2/client" + "github.com/asim/go-micro/v3/client" ) // Options contains configuration for the Store diff --git a/transport/http_transport.go b/transport/http_transport.go index 29c821c25a..1063769cf5 100644 --- a/transport/http_transport.go +++ b/transport/http_transport.go @@ -13,10 +13,10 @@ import ( "sync" "time" - maddr "github.com/micro/go-micro/v2/util/addr" - "github.com/micro/go-micro/v2/util/buf" - mnet "github.com/micro/go-micro/v2/util/net" - mls "github.com/micro/go-micro/v2/util/tls" + maddr "github.com/asim/go-micro/v3/util/addr" + "github.com/asim/go-micro/v3/util/buf" + mnet "github.com/asim/go-micro/v3/util/net" + mls "github.com/asim/go-micro/v3/util/tls" "golang.org/x/net/http2" "golang.org/x/net/http2/h2c" ) diff --git a/transport/memory.go b/transport/memory.go index ef117454cb..a6885e844a 100644 --- a/transport/memory.go +++ b/transport/memory.go @@ -9,8 +9,8 @@ import ( "sync" "time" - maddr "github.com/micro/go-micro/v2/util/addr" - mnet "github.com/micro/go-micro/v2/util/net" + maddr "github.com/asim/go-micro/v3/util/addr" + mnet "github.com/asim/go-micro/v3/util/net" ) type memorySocket struct { diff --git a/transport/options.go b/transport/options.go index d30e4c28d6..26a0cd9fc0 100644 --- a/transport/options.go +++ b/transport/options.go @@ -5,7 +5,7 @@ import ( "crypto/tls" "time" - "github.com/micro/go-micro/v2/codec" + "github.com/asim/go-micro/v3/codec" ) type Options struct { diff --git a/transport/quic.go b/transport/quic.go index 21d3d63ba2..56d2438e51 100644 --- a/transport/quic.go +++ b/transport/quic.go @@ -6,8 +6,8 @@ import ( "encoding/gob" "time" + utls "github.com/asim/go-micro/v3/util/tls" quic "github.com/lucas-clemente/quic-go" - utls "github.com/micro/go-micro/v2/util/tls" ) type quicSocket struct { diff --git a/util/ctx/ctx.go b/util/ctx/ctx.go index 939a65874c..43bd7bd57d 100644 --- a/util/ctx/ctx.go +++ b/util/ctx/ctx.go @@ -5,7 +5,7 @@ import ( "net/http" "strings" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3/metadata" ) func FromRequest(r *http.Request) context.Context { diff --git a/util/ctx/ctx_test.go b/util/ctx/ctx_test.go index 03effcf3e6..a150e91a90 100644 --- a/util/ctx/ctx_test.go +++ b/util/ctx/ctx_test.go @@ -4,7 +4,7 @@ import ( "net/http" "testing" - "github.com/micro/go-micro/v2/metadata" + "github.com/asim/go-micro/v3/metadata" ) func TestRequestToContext(t *testing.T) { diff --git a/util/file/client.go b/util/file/client.go index a25739b9db..2fa6e32fb2 100644 --- a/util/file/client.go +++ b/util/file/client.go @@ -9,8 +9,8 @@ import ( "log" "os" - "github.com/micro/go-micro/v2/client" - proto "github.com/micro/go-micro/v2/util/file/proto" + "github.com/asim/go-micro/v3/client" + proto "github.com/asim/go-micro/v3/util/file/proto" ) // Client is the client interface to access files diff --git a/util/file/handler.go b/util/file/handler.go index b5f1388f36..36e7346645 100644 --- a/util/file/handler.go +++ b/util/file/handler.go @@ -6,10 +6,10 @@ import ( "path/filepath" "sync" - "github.com/micro/go-micro/v2/errors" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/server" - proto "github.com/micro/go-micro/v2/util/file/proto" + "github.com/asim/go-micro/v3/errors" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/server" + proto "github.com/asim/go-micro/v3/util/file/proto" "golang.org/x/net/context" ) diff --git a/util/file/proto/file.pb.micro.go b/util/file/proto/file.pb.micro.go index 08656d7c91..7cce65b4aa 100644 --- a/util/file/proto/file.pb.micro.go +++ b/util/file/proto/file.pb.micro.go @@ -11,9 +11,9 @@ import ( import ( context "context" - api "github.com/micro/go-micro/v2/api" - client "github.com/micro/go-micro/v2/client" - server "github.com/micro/go-micro/v2/server" + api "github.com/asim/go-micro/v3/api" + client "github.com/asim/go-micro/v3/client" + server "github.com/asim/go-micro/v3/server" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/util/http/http.go b/util/http/http.go index efe1bd1c3b..31360e3429 100644 --- a/util/http/http.go +++ b/util/http/http.go @@ -8,9 +8,9 @@ import ( "net/http" "strings" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/registry" - "github.com/micro/go-micro/v2/selector" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/registry" + "github.com/asim/go-micro/v3/selector" ) // Write sets the status and body on a http ResponseWriter diff --git a/util/http/http_test.go b/util/http/http_test.go index d8da1f50c2..c3d88efab2 100644 --- a/util/http/http_test.go +++ b/util/http/http_test.go @@ -6,7 +6,7 @@ import ( "net/http" "testing" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func TestRoundTripper(t *testing.T) { diff --git a/util/http/options.go b/util/http/options.go index 319b515771..aad26bbbd4 100644 --- a/util/http/options.go +++ b/util/http/options.go @@ -1,7 +1,7 @@ package http import ( - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) type Options struct { diff --git a/util/http/roundtripper.go b/util/http/roundtripper.go index 77ac99c6a4..f9b01ba285 100644 --- a/util/http/roundtripper.go +++ b/util/http/roundtripper.go @@ -4,7 +4,7 @@ import ( "errors" "net/http" - "github.com/micro/go-micro/v2/selector" + "github.com/asim/go-micro/v3/selector" ) type roundTripper struct { diff --git a/util/io/io.go b/util/io/io.go index 257d9b9389..13aeb6ad56 100644 --- a/util/io/io.go +++ b/util/io/io.go @@ -4,7 +4,7 @@ package io import ( "io" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) type rwc struct { diff --git a/util/kubernetes/api/request.go b/util/kubernetes/api/request.go index 18c1ab24b2..d91536683b 100644 --- a/util/kubernetes/api/request.go +++ b/util/kubernetes/api/request.go @@ -10,7 +10,7 @@ import ( "net/http" "net/url" - "github.com/micro/go-micro/v2/logger" + "github.com/asim/go-micro/v3/logger" ) // Request is used to construct a http request for the k8s API. diff --git a/util/kubernetes/client/client.go b/util/kubernetes/client/client.go index f1c2708712..a298527d0e 100644 --- a/util/kubernetes/client/client.go +++ b/util/kubernetes/client/client.go @@ -13,8 +13,8 @@ import ( "regexp" "strings" - "github.com/micro/go-micro/v2/logger" - "github.com/micro/go-micro/v2/util/kubernetes/api" + "github.com/asim/go-micro/v3/logger" + "github.com/asim/go-micro/v3/util/kubernetes/api" ) var ( diff --git a/util/kubernetes/client/watch.go b/util/kubernetes/client/watch.go index 833ee53400..fb2e0eca7b 100644 --- a/util/kubernetes/client/watch.go +++ b/util/kubernetes/client/watch.go @@ -7,7 +7,7 @@ import ( "errors" "net/http" - "github.com/micro/go-micro/v2/util/kubernetes/api" + "github.com/asim/go-micro/v3/util/kubernetes/api" ) const ( diff --git a/util/log/README.md b/util/log/README.md index 97ddacf399..635d7f08e5 100644 --- a/util/log/README.md +++ b/util/log/README.md @@ -1,6 +1,6 @@ # Log -DEPRECATED: use github.com/micro/go-micro/v2/logger interface +DEPRECATED: use github.com/asim/go-micro/v3/logger interface This is the global logger for all micro based libraries. diff --git a/util/log/log.go b/util/log/log.go index 16e5cd83e4..18fcfa15a8 100644 --- a/util/log/log.go +++ b/util/log/log.go @@ -1,5 +1,5 @@ // Package log is a global internal logger -// DEPRECATED: this is frozen package, use github.com/micro/go-micro/v2/logger +// DEPRECATED: this is frozen package, use github.com/asim/go-micro/v3/logger package log import ( @@ -7,8 +7,8 @@ import ( "os" "sync/atomic" - dlog "github.com/micro/go-micro/v2/debug/log" - nlog "github.com/micro/go-micro/v2/logger" + dlog "github.com/asim/go-micro/v3/debug/log" + nlog "github.com/asim/go-micro/v3/logger" ) // level is a log level diff --git a/util/mdns/server.go b/util/mdns/server.go index e62d3e9280..531b2e5582 100644 --- a/util/mdns/server.go +++ b/util/mdns/server.go @@ -8,7 +8,7 @@ import ( "sync/atomic" "time" - log "github.com/micro/go-micro/v2/logger" + log "github.com/asim/go-micro/v3/logger" "github.com/miekg/dns" "golang.org/x/net/ipv4" "golang.org/x/net/ipv6" diff --git a/util/mux/mux.go b/util/mux/mux.go index 8b1c66bbe5..c816a9a1ce 100644 --- a/util/mux/mux.go +++ b/util/mux/mux.go @@ -5,10 +5,10 @@ import ( "context" "sync" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/debug/handler" - "github.com/micro/go-micro/v2/network/proxy" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/debug/handler" + "github.com/asim/go-micro/v3/network/proxy" + "github.com/asim/go-micro/v3/server" ) // Server is a proxy muxer that incudes the use of the DefaultHandler diff --git a/util/pool/default.go b/util/pool/default.go index 7175b2bb03..3d2fbd071a 100644 --- a/util/pool/default.go +++ b/util/pool/default.go @@ -4,8 +4,8 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/transport" "github.com/google/uuid" - "github.com/micro/go-micro/v2/transport" ) type pool struct { diff --git a/util/pool/default_test.go b/util/pool/default_test.go index 4726628851..899540e908 100644 --- a/util/pool/default_test.go +++ b/util/pool/default_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) func testPool(t *testing.T, size int, ttl time.Duration) { diff --git a/util/pool/options.go b/util/pool/options.go index 5b6632acf8..4a6bbea487 100644 --- a/util/pool/options.go +++ b/util/pool/options.go @@ -3,7 +3,7 @@ package pool import ( "time" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) type Options struct { diff --git a/util/pool/pool.go b/util/pool/pool.go index 68e43395c7..d63960fc26 100644 --- a/util/pool/pool.go +++ b/util/pool/pool.go @@ -4,7 +4,7 @@ package pool import ( "time" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) // Pool is an interface for connection pooling diff --git a/util/registry/util.go b/util/registry/util.go index 140faedd91..edea2a09ef 100644 --- a/util/registry/util.go +++ b/util/registry/util.go @@ -1,7 +1,7 @@ package registry import ( - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func addNodes(old, neu []*registry.Node) []*registry.Node { diff --git a/util/registry/util_test.go b/util/registry/util_test.go index 740ab5b1ca..25c2210d04 100644 --- a/util/registry/util_test.go +++ b/util/registry/util_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) func TestRemove(t *testing.T) { diff --git a/util/socket/socket.go b/util/socket/socket.go index 91fac4bc95..de226aea91 100644 --- a/util/socket/socket.go +++ b/util/socket/socket.go @@ -4,7 +4,7 @@ package socket import ( "io" - "github.com/micro/go-micro/v2/transport" + "github.com/asim/go-micro/v3/transport" ) // Socket is our pseudo socket for transport.Socket diff --git a/util/stream/stream.go b/util/stream/stream.go index 22f0703e34..6a22e98142 100644 --- a/util/stream/stream.go +++ b/util/stream/stream.go @@ -5,10 +5,10 @@ import ( "context" "sync" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/codec" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/codec" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/server" ) type Stream interface { diff --git a/util/sync/manager.go b/util/sync/manager.go index 6f7c5d6ed0..716fa0ccbd 100644 --- a/util/sync/manager.go +++ b/util/sync/manager.go @@ -3,7 +3,7 @@ package sync import ( "time" - "github.com/micro/go-micro/v2/store" + "github.com/asim/go-micro/v3/store" "github.com/pkg/errors" ) diff --git a/util/sync/options.go b/util/sync/options.go index 30e493f271..e2dbb03ce7 100644 --- a/util/sync/options.go +++ b/util/sync/options.go @@ -3,7 +3,7 @@ package sync import ( "time" - "github.com/micro/go-micro/v2/store" + "github.com/asim/go-micro/v3/store" ) // Options represents Sync options diff --git a/util/sync/sync.go b/util/sync/sync.go index d1f0e2409a..c3110b196a 100644 --- a/util/sync/sync.go +++ b/util/sync/sync.go @@ -6,8 +6,8 @@ import ( "sync" "time" + "github.com/asim/go-micro/v3/store" "github.com/ef-ds/deque" - "github.com/micro/go-micro/v2/store" "github.com/pkg/errors" ) diff --git a/util/test/test.go b/util/test/test.go index f95b1f680e..af5b3501ef 100644 --- a/util/test/test.go +++ b/util/test/test.go @@ -1,7 +1,7 @@ package test import ( - "github.com/micro/go-micro/v2/registry" + "github.com/asim/go-micro/v3/registry" ) var ( diff --git a/util/wrapper/wrapper.go b/util/wrapper/wrapper.go index 0d353fe4b1..2505322805 100644 --- a/util/wrapper/wrapper.go +++ b/util/wrapper/wrapper.go @@ -4,12 +4,12 @@ import ( "context" "strings" - "github.com/micro/go-micro/v2/auth" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/debug/stats" - "github.com/micro/go-micro/v2/debug/trace" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/auth" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/debug/stats" + "github.com/asim/go-micro/v3/debug/trace" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/server" ) type fromServiceWrapper struct { diff --git a/util/wrapper/wrapper_test.go b/util/wrapper/wrapper_test.go index 38535e6624..c67927bc29 100644 --- a/util/wrapper/wrapper_test.go +++ b/util/wrapper/wrapper_test.go @@ -5,10 +5,10 @@ import ( "reflect" "testing" - "github.com/micro/go-micro/v2/auth" - "github.com/micro/go-micro/v2/client" - "github.com/micro/go-micro/v2/metadata" - "github.com/micro/go-micro/v2/server" + "github.com/asim/go-micro/v3/auth" + "github.com/asim/go-micro/v3/client" + "github.com/asim/go-micro/v3/metadata" + "github.com/asim/go-micro/v3/server" ) func TestWrapper(t *testing.T) {