fix import paths for v2 release

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2020-01-30 14:39:00 +03:00
parent b65757048a
commit 0807802cea
9 changed files with 21 additions and 21 deletions

View File

@ -9,8 +9,8 @@ import (
"github.com/golang/protobuf/jsonpb" "github.com/golang/protobuf/jsonpb"
"github.com/golang/protobuf/proto" "github.com/golang/protobuf/proto"
jsoniter "github.com/json-iterator/go" jsoniter "github.com/json-iterator/go"
"github.com/micro/go-micro/codec" "github.com/micro/go-micro/v2/codec"
"github.com/micro/go-micro/codec/bytes" "github.com/micro/go-micro/v2/codec/bytes"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/encoding" "google.golang.org/grpc/encoding"
) )

View File

@ -1,7 +1,7 @@
package grpc package grpc
import ( import (
"github.com/micro/go-micro/errors" "github.com/micro/go-micro/v2/errors"
"google.golang.org/grpc/status" "google.golang.org/grpc/status"
) )

14
grpc.go
View File

@ -9,13 +9,13 @@ import (
"sync" "sync"
"time" "time"
"github.com/micro/go-micro/broker" "github.com/micro/go-micro/v2/broker"
"github.com/micro/go-micro/client" "github.com/micro/go-micro/v2/client"
"github.com/micro/go-micro/client/selector" "github.com/micro/go-micro/v2/client/selector"
raw "github.com/micro/go-micro/codec/bytes" raw "github.com/micro/go-micro/v2/codec/bytes"
"github.com/micro/go-micro/errors" "github.com/micro/go-micro/v2/errors"
"github.com/micro/go-micro/metadata" "github.com/micro/go-micro/v2/metadata"
"github.com/micro/go-micro/registry" "github.com/micro/go-micro/v2/registry"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials"

View File

@ -5,10 +5,10 @@ import (
"net" "net"
"testing" "testing"
"github.com/micro/go-micro/client" "github.com/micro/go-micro/v2/client"
"github.com/micro/go-micro/client/selector" "github.com/micro/go-micro/v2/client/selector"
"github.com/micro/go-micro/registry" "github.com/micro/go-micro/v2/registry"
"github.com/micro/go-micro/registry/memory" "github.com/micro/go-micro/v2/registry/memory"
pgrpc "google.golang.org/grpc" pgrpc "google.golang.org/grpc"
pb "google.golang.org/grpc/examples/helloworld/helloworld" pb "google.golang.org/grpc/examples/helloworld/helloworld"
) )

View File

@ -1,7 +1,7 @@
package grpc package grpc
import ( import (
"github.com/micro/go-micro/client" "github.com/micro/go-micro/v2/client"
) )
type grpcEvent struct { type grpcEvent struct {

View File

@ -5,7 +5,7 @@ import (
"context" "context"
"crypto/tls" "crypto/tls"
"github.com/micro/go-micro/client" "github.com/micro/go-micro/v2/client"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/encoding" "google.golang.org/grpc/encoding"
) )

View File

@ -4,8 +4,8 @@ import (
"fmt" "fmt"
"strings" "strings"
"github.com/micro/go-micro/client" "github.com/micro/go-micro/v2/client"
"github.com/micro/go-micro/codec" "github.com/micro/go-micro/v2/codec"
) )
type grpcRequest struct { type grpcRequest struct {

View File

@ -3,8 +3,8 @@ package grpc
import ( import (
"strings" "strings"
"github.com/micro/go-micro/codec" "github.com/micro/go-micro/v2/codec"
"github.com/micro/go-micro/codec/bytes" "github.com/micro/go-micro/v2/codec/bytes"
"google.golang.org/grpc" "google.golang.org/grpc"
"google.golang.org/grpc/encoding" "google.golang.org/grpc/encoding"
) )

View File

@ -5,7 +5,7 @@ import (
"io" "io"
"sync" "sync"
"github.com/micro/go-micro/client" "github.com/micro/go-micro/v2/client"
"google.golang.org/grpc" "google.golang.org/grpc"
) )