rename imports to asim/go-micro (#2051)

This commit is contained in:
Asim Aslam
2020-10-20 10:15:39 +01:00
committed by GitHub
parent 1ee348109e
commit b508565a78
265 changed files with 673 additions and 673 deletions

View File

@@ -1,12 +1,12 @@
package grpc
import (
"github.com/micro/go-micro/v3/client"
gclient "github.com/micro/go-micro/v3/client/grpc"
"github.com/micro/go-micro/v3/model"
"github.com/micro/go-micro/v3/server"
gserver "github.com/micro/go-micro/v3/server/grpc"
"github.com/micro/go-micro/v3/service"
"github.com/asim/go-micro/v3/client"
gclient "github.com/asim/go-micro/v3/client/grpc"
"github.com/asim/go-micro/v3/model"
"github.com/asim/go-micro/v3/server"
gserver "github.com/asim/go-micro/v3/server/grpc"
"github.com/asim/go-micro/v3/service"
)
type grpcService struct {

View File

@@ -7,10 +7,10 @@ import (
"testing"
"time"
"github.com/micro/go-micro/v3/registry/memory"
"github.com/micro/go-micro/v3/service"
hello "github.com/micro/go-micro/v3/service/grpc/proto"
mls "github.com/micro/go-micro/v3/util/tls"
"github.com/asim/go-micro/v3/registry/memory"
"github.com/asim/go-micro/v3/service"
hello "github.com/asim/go-micro/v3/service/grpc/proto"
mls "github.com/asim/go-micro/v3/util/tls"
)
type testHandler struct{}

View File

@@ -3,9 +3,9 @@ package grpc
import (
"crypto/tls"
gc "github.com/micro/go-micro/v3/client/grpc"
gs "github.com/micro/go-micro/v3/server/grpc"
"github.com/micro/go-micro/v3/service"
gc "github.com/asim/go-micro/v3/client/grpc"
gs "github.com/asim/go-micro/v3/server/grpc"
"github.com/asim/go-micro/v3/service"
)
// WithTLS sets the TLS config for the service

View File

@@ -11,9 +11,9 @@ import (
import (
context "context"
api "github.com/micro/go-micro/v3/api"
client "github.com/micro/go-micro/v3/client"
server "github.com/micro/go-micro/v3/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.

View File

@@ -2,12 +2,12 @@
package mucp
import (
"github.com/micro/go-micro/v3/client"
cmucp "github.com/micro/go-micro/v3/client/mucp"
"github.com/micro/go-micro/v3/model"
"github.com/micro/go-micro/v3/server"
smucp "github.com/micro/go-micro/v3/server/mucp"
"github.com/micro/go-micro/v3/service"
"github.com/asim/go-micro/v3/client"
cmucp "github.com/asim/go-micro/v3/client/mucp"
"github.com/asim/go-micro/v3/model"
"github.com/asim/go-micro/v3/server"
smucp "github.com/asim/go-micro/v3/server/mucp"
"github.com/asim/go-micro/v3/service"
)
type mucpService struct {

View File

@@ -4,15 +4,15 @@ import (
"context"
"time"
"github.com/micro/go-micro/v3/broker"
"github.com/micro/go-micro/v3/broker/http"
"github.com/micro/go-micro/v3/client"
mucpClient "github.com/micro/go-micro/v3/client/mucp"
"github.com/micro/go-micro/v3/model"
"github.com/micro/go-micro/v3/registry"
"github.com/micro/go-micro/v3/registry/mdns"
"github.com/micro/go-micro/v3/server"
mucpServer "github.com/micro/go-micro/v3/server/mucp"
"github.com/asim/go-micro/v3/broker"
"github.com/asim/go-micro/v3/broker/http"
"github.com/asim/go-micro/v3/client"
mucpClient "github.com/asim/go-micro/v3/client/mucp"
"github.com/asim/go-micro/v3/model"
"github.com/asim/go-micro/v3/registry"
"github.com/asim/go-micro/v3/registry/mdns"
"github.com/asim/go-micro/v3/server"
mucpServer "github.com/asim/go-micro/v3/server/mucp"
)
type Options struct {

View File

@@ -2,9 +2,9 @@
package service
import (
"github.com/micro/go-micro/v3/client"
"github.com/micro/go-micro/v3/model"
"github.com/micro/go-micro/v3/server"
"github.com/asim/go-micro/v3/client"
"github.com/asim/go-micro/v3/model"
"github.com/asim/go-micro/v3/server"
)
// Service is an interface for a micro service