From 109f13d3f21ed1b957247ba68222769bab31be35 Mon Sep 17 00:00:00 2001 From: Stefan Obradovic Date: Tue, 12 Jun 2018 09:15:24 +1000 Subject: [PATCH] refactor(import): updated to use the new import path for go-nats --- nats.go | 2 +- nats_test.go | 2 +- options.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/nats.go b/nats.go index a8cce0e..70d8891 100644 --- a/nats.go +++ b/nats.go @@ -8,7 +8,7 @@ import ( "github.com/micro/go-micro/broker" "github.com/micro/go-micro/broker/codec/json" "github.com/micro/go-micro/cmd" - "github.com/nats-io/nats" + "github.com/nats-io/go-nats" ) type nbroker struct { diff --git a/nats_test.go b/nats_test.go index e827fba..beafcde 100644 --- a/nats_test.go +++ b/nats_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/micro/go-micro/broker" - "github.com/nats-io/nats" + "github.com/nats-io/go-nats" ) var addrTestCases = []struct { diff --git a/options.go b/options.go index 663fad3..a09ab7f 100644 --- a/options.go +++ b/options.go @@ -4,7 +4,7 @@ import ( "context" "github.com/micro/go-micro/broker" - "github.com/nats-io/nats" + "github.com/nats-io/go-nats" ) type optionsKey struct{}