micro/registry/mdns/mdns.go

12 lines
259 B
Go
Raw Normal View History

2019-01-15 16:50:37 +00:00
// Package mdns provides a multicast dns registry
2016-04-27 18:21:05 +01:00
package mdns
import (
"github.com/micro/go-micro/registry"
)
2019-01-15 16:50:37 +00:00
// NewRegistry returns a new mdns registry
2016-04-27 18:21:05 +01:00
func NewRegistry(opts ...registry.Option) registry.Registry {
2019-01-15 16:50:37 +00:00
return registry.NewRegistry(opts...)
2016-04-27 18:21:05 +01:00
}