diff --git a/test/chat/client/main.go b/test/chat/client/main.go index 9091b34..5aab38f 100644 --- a/test/chat/client/main.go +++ b/test/chat/client/main.go @@ -13,7 +13,7 @@ import ( "github.com/micro/micro/v3/service" "github.com/micro/micro/v3/service/context/metadata" "github.com/micro/micro/v3/service/logger" - chat "github.com/micro/services/chat/proto" + chat "github.com/micro/services/test/chat/proto" ) var ( diff --git a/test/chat/handler/handler.go b/test/chat/handler/handler.go index 479ce67..06e057e 100644 --- a/test/chat/handler/handler.go +++ b/test/chat/handler/handler.go @@ -15,7 +15,7 @@ import ( "google.golang.org/protobuf/types/known/timestamppb" // it's standard to import the services own proto under the alias pb - pb "github.com/micro/services/chat/proto" + pb "github.com/micro/services/test/chat/proto" ) const ( diff --git a/test/chat/main.go b/test/chat/main.go index 13d44cd..f606373 100644 --- a/test/chat/main.go +++ b/test/chat/main.go @@ -4,8 +4,8 @@ import ( "github.com/micro/micro/v3/service" "github.com/micro/micro/v3/service/logger" - "github.com/micro/services/chat/handler" - pb "github.com/micro/services/chat/proto" + "github.com/micro/services/test/chat/handler" + pb "github.com/micro/services/test/chat/proto" ) func main() {