mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-11 17:18:28 +02:00
12 lines
208 B
Go
12 lines
208 B
Go
package consul
|
|
|
|
// This is a hack
|
|
|
|
import (
|
|
"github.com/micro/go-micro/registry"
|
|
)
|
|
|
|
func NewRegistry(addrs []string, opt ...registry.Option) registry.Registry {
|
|
return registry.NewRegistry(addrs, opt...)
|
|
}
|