v3 refactor (#1868)

* Move to v3

Co-authored-by: Ben Toogood <bentoogood@gmail.com>
This commit is contained in:
Asim Aslam 2020-07-27 13:22:00 +01:00 committed by Vasiliy Tolstov
parent cf117e2b46
commit a4a73bac67
2 changed files with 8 additions and 8 deletions

View File

@ -10,13 +10,13 @@ import (
"sync" "sync"
"time" "time"
"github.com/micro/go-micro/v2/api" "github.com/micro/go-micro/v3/api"
"github.com/micro/go-micro/v2/api/router" "github.com/micro/go-micro/v3/api/router"
"github.com/micro/go-micro/v2/api/router/util" "github.com/micro/go-micro/v3/api/router/util"
"github.com/micro/go-micro/v2/logger" "github.com/micro/go-micro/v3/logger"
"github.com/micro/go-micro/v2/metadata" "github.com/micro/go-micro/v3/metadata"
"github.com/micro/go-micro/v2/registry" "github.com/micro/go-micro/v3/registry"
"github.com/micro/go-micro/v2/registry/cache" "github.com/micro/go-micro/v3/registry/cache"
) )
// endpoint struct, that holds compiled pcre // endpoint struct, that holds compiled pcre

View File

@ -3,7 +3,7 @@ package registry
import ( import (
"testing" "testing"
"github.com/micro/go-micro/v2/registry" "github.com/micro/go-micro/v3/registry"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )