micro/registry/consul/consul.go

10 lines
168 B
Go

package consul
import (
"github.com/micro/go-micro/registry"
)
func NewRegistry(opts ...registry.Option) registry.Registry {
return registry.NewRegistry(opts...)
}