12 lines
259 B
Go
12 lines
259 B
Go
// Package mdns provides a multicast dns registry
|
|
package mdns
|
|
|
|
import (
|
|
"github.com/micro/go-micro/registry"
|
|
)
|
|
|
|
// NewRegistry returns a new mdns registry
|
|
func NewRegistry(opts ...registry.Option) registry.Registry {
|
|
return registry.NewRegistry(opts...)
|
|
}
|