563768b58a
* Move to v3 Co-authored-by: Ben Toogood <bentoogood@gmail.com>
19 lines
365 B
Go
19 lines
365 B
Go
// Package mdns provides a multicast dns registry
|
|
package mdns
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/micro/go-micro/v3/registry"
|
|
)
|
|
|
|
// Domain sets the mdnsDomain
|
|
func Domain(d string) registry.Option {
|
|
return func(o *registry.Options) {
|
|
if o.Context == nil {
|
|
o.Context = context.Background()
|
|
}
|
|
o.Context = context.WithValue(o.Context, "mdns.domain", d)
|
|
}
|
|
}
|