micro/registry/mdns/mdns.go

12 lines
259 B
Go
Raw Normal View History

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