Skip to content

Commit

Permalink
Migration to Go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
shijuvar committed Mar 14, 2021
1 parent 6efc46d commit 6035573
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/grpc-nats/client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"time"

"github.com/golang/protobuf/proto"
"github.com/nats-io/go-nats"
nats "github.com/nats-io/nats.go"
"github.com/satori/go.uuid"
"google.golang.org/grpc"

Expand Down
2 changes: 1 addition & 1 deletion examples/grpc-nats/discovery/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"

"github.com/golang/protobuf/proto"
"github.com/nats-io/go-nats"
nats "github.com/nats-io/nats.go"
"github.com/spf13/viper"

pb "github.com/shijuvar/gokit/examples/grpc-nats/order"
Expand Down
2 changes: 1 addition & 1 deletion examples/grpc-nats/eventstore/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"

"github.com/golang/protobuf/proto"
"github.com/nats-io/go-nats"
"github.com/nats-io/nats.go"

pb "github.com/shijuvar/gokit/examples/grpc-nats/order"
"github.com/shijuvar/gokit/examples/grpc-nats/store"
Expand Down
2 changes: 1 addition & 1 deletion examples/grpc-nats/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"google.golang.org/grpc"

"github.com/golang/protobuf/proto"
"github.com/nats-io/go-nats"
nats "github.com/nats-io/nats.go"
"github.com/satori/go.uuid"

pb "github.com/shijuvar/gokit/examples/grpc-nats/order"
Expand Down
2 changes: 1 addition & 1 deletion examples/grpc-nats/worker1/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"

"github.com/golang/protobuf/proto"
"github.com/nats-io/go-nats"
nats "github.com/nats-io/nats.go"

pb "github.com/shijuvar/gokit/examples/grpc-nats/order"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/grpc-nats/worker2/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"

"github.com/golang/protobuf/proto"
"github.com/nats-io/go-nats"
nats "github.com/nats-io/nats.go"

pb "github.com/shijuvar/gokit/examples/grpc-nats/order"
)
Expand Down
2 changes: 1 addition & 1 deletion examples/nats-streaming/eventstore/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"net"

stan "github.com/nats-io/go-nats-streaming"
stan "github.com/nats-io/stan.go"
"google.golang.org/grpc"

"github.com/shijuvar/gokit/examples/nats-streaming/pb"
Expand Down
2 changes: 1 addition & 1 deletion examples/nats-streaming/orderquery-store1/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"runtime"

stan "github.com/nats-io/go-nats-streaming"
stan "github.com/nats-io/stan.go"

"github.com/shijuvar/gokit/examples/nats-streaming/pb"
"github.com/shijuvar/gokit/examples/nats-streaming/store"
Expand Down
2 changes: 1 addition & 1 deletion examples/nats-streaming/orderquery-store2/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"log"
"runtime"

stan "github.com/nats-io/go-nats-streaming"
stan "github.com/nats-io/stan.go"

"github.com/shijuvar/gokit/examples/nats-streaming/pb"
"github.com/shijuvar/gokit/examples/nats-streaming/store"
Expand Down
2 changes: 1 addition & 1 deletion examples/nats-streaming/restaurantservice/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"runtime"
"time"

stan "github.com/nats-io/go-nats-streaming"
stan "github.com/nats-io/stan.go"

"github.com/shijuvar/gokit/examples/nats-streaming/pb"
)
Expand Down

0 comments on commit 6035573

Please sign in to comment.