micro/registry/consul/consul.go
2015-11-20 16:17:33 +00:00

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...)
}