From be4e0bddee7d4d183d9604269ca7940e3f4f1ced Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Fri, 21 Jun 2019 15:24:15 +0100 Subject: [PATCH] Move selector to client/selector --- http.go | 2 +- http_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/http.go b/http.go index bdce702..25741cb 100644 --- a/http.go +++ b/http.go @@ -20,7 +20,7 @@ import ( errors "github.com/micro/go-micro/errors" "github.com/micro/go-micro/metadata" "github.com/micro/go-micro/registry" - "github.com/micro/go-micro/selector" + "github.com/micro/go-micro/client/selector" "github.com/micro/go-micro/transport" ) diff --git a/http_test.go b/http_test.go index 77f8f80..97f9c39 100644 --- a/http_test.go +++ b/http_test.go @@ -14,7 +14,7 @@ import ( "github.com/micro/go-micro/client" "github.com/micro/go-micro/registry" "github.com/micro/go-micro/registry/memory" - "github.com/micro/go-micro/selector" + "github.com/micro/go-micro/client/selector" "github.com/micro/go-plugins/client/http/test" )