Fix test chat service imports

This commit is contained in:
Ben Toogood
2021-01-27 12:07:58 +00:00
parent 1606b98695
commit 6cc969e541
3 changed files with 4 additions and 4 deletions

View File

@@ -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 (

View File

@@ -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 (

View File

@@ -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() {