Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ Import the plugins in a `plugins.go` file
package main

import (
_ "github.com/go-micro/plugins/v5/broker/rabbitmq"
_ "github.com/go-micro/plugins/v5/registry/kubernetes"
_ "github.com/go-micro/plugins/v5/transport/nats"
_ "github.com/micro/plugins/v5/broker/rabbitmq"
_ "github.com/micro/plugins/v5/registry/kubernetes"
_ "github.com/micro/plugins/v5/transport/nats"
)
```

Expand Down Expand Up @@ -97,7 +97,7 @@ Import and set as options when creating a new service
```go
import (
"go-micro.dev/v5"
"github.com/go-micro/plugins/v5/registry/kubernetes"
"github.com/micro/plugins/v5/registry/kubernetes"
)

func main() {
Expand All @@ -124,9 +124,9 @@ Create file plugins.go
package main

import (
_ "github.com/go-micro/plugins/v5/broker/rabbitmq"
_ "github.com/go-micro/plugins/v5/registry/kubernetes"
_ "github.com/go-micro/plugins/v5/transport/nats"
_ "github.com/micro/plugins/v5/broker/rabbitmq"
_ "github.com/micro/plugins/v5/registry/kubernetes"
_ "github.com/micro/plugins/v5/transport/nats"
)
```

Expand Down
6 changes: 3 additions & 3 deletions v5/broker/proxy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ Here's a simple usage guide
### Run Proxy

```
# install micro
go get github.com/micro/micro
# install mu
go install github.com/micro/micro/v5/mu@latest

# run proxy
micro proxy
mu proxy
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I'm not even sure this will work anymore because we totally scrapped everything...lol

```

### Import and Flag plugin
Expand Down
4 changes: 2 additions & 2 deletions v5/config/source/etcd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Specify source with data

```go
etcdSource := etcd.NewSource(
// optionally specify etcd address; default to localhost:8500
etcd.WithAddress("10.0.0.10:8500"),
// optionally specify etcd address; default to localhost:2379
etcd.WithAddress("10.0.0.10:2379"),
// optionally specify prefix; defaults to /micro/config
etcd.WithPrefix("/my/prefix"),
// optionally strip the provided prefix from the keys, defaults to false
Expand Down
Loading