refactor(import): updated to use the new import path for go-nats

This commit is contained in:
Stefan Obradovic 2018-06-12 09:15:24 +10:00 committed by Vasiliy Tolstov
parent 952a716c38
commit 109f13d3f2
3 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ import (
"github.com/micro/go-micro/broker" "github.com/micro/go-micro/broker"
"github.com/micro/go-micro/broker/codec/json" "github.com/micro/go-micro/broker/codec/json"
"github.com/micro/go-micro/cmd" "github.com/micro/go-micro/cmd"
"github.com/nats-io/nats" "github.com/nats-io/go-nats"
) )
type nbroker struct { type nbroker struct {

View File

@ -5,7 +5,7 @@ import (
"testing" "testing"
"github.com/micro/go-micro/broker" "github.com/micro/go-micro/broker"
"github.com/nats-io/nats" "github.com/nats-io/go-nats"
) )
var addrTestCases = []struct { var addrTestCases = []struct {

View File

@ -4,7 +4,7 @@ import (
"context" "context"
"github.com/micro/go-micro/broker" "github.com/micro/go-micro/broker"
"github.com/nats-io/nats" "github.com/nats-io/go-nats"
) )
type optionsKey struct{} type optionsKey struct{}