switch source for go micro plugins

This commit is contained in:
Willy Kloucek
2022-04-19 09:44:47 +02:00
parent ff48a58c1f
commit e5b7496c29
17 changed files with 70 additions and 62 deletions
+5 -5
View File
@@ -4,11 +4,11 @@ import (
"os"
"strings"
consulr "github.com/asim/go-micro/plugins/registry/consul/v4"
etcdr "github.com/asim/go-micro/plugins/registry/etcd/v4"
kubernetesr "github.com/asim/go-micro/plugins/registry/kubernetes/v4"
mdnsr "github.com/asim/go-micro/plugins/registry/mdns/v4"
natsr "github.com/asim/go-micro/plugins/registry/nats/v4"
consulr "github.com/go-micro/plugins/v4/registry/consul"
etcdr "github.com/go-micro/plugins/v4/registry/etcd"
kubernetesr "github.com/go-micro/plugins/v4/registry/kubernetes"
mdnsr "github.com/go-micro/plugins/v4/registry/mdns"
natsr "github.com/go-micro/plugins/v4/registry/nats"
"go-micro.dev/v4/registry"
)
+3 -3
View File
@@ -6,9 +6,9 @@ import (
mgrpcc "github.com/asim/go-micro/plugins/client/grpc/v4"
mgrpcs "github.com/asim/go-micro/plugins/server/grpc/v4"
mbreaker "github.com/asim/go-micro/plugins/wrapper/breaker/gobreaker/v4"
"github.com/asim/go-micro/plugins/wrapper/monitoring/prometheus/v4"
"github.com/asim/go-micro/plugins/wrapper/trace/opencensus/v4"
mbreaker "github.com/go-micro/plugins/v4/wrapper/breaker/gobreaker"
"github.com/go-micro/plugins/v4/wrapper/monitoring/prometheus"
"github.com/go-micro/plugins/v4/wrapper/trace/opencensus"
"github.com/owncloud/ocis/ocis-pkg/registry"
"go-micro.dev/v4"
"go-micro.dev/v4/client"
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"github.com/owncloud/ocis/ocis-pkg/registry"
mhttps "github.com/asim/go-micro/plugins/server/http/v4"
mhttps "github.com/go-micro/plugins/v4/server/http"
"go-micro.dev/v4"
"go-micro.dev/v4/server"
)