Compare commits

...

1 Commits

Author SHA1 Message Date
925b3af46b register: fix options
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2021-01-29 15:06:47 +03:00

View File

@@ -246,13 +246,13 @@ func DeregisterDomain(d string) DeregisterOption {
}
}
func GetContext(ctx context.Context) LookupOption {
func LookupContext(ctx context.Context) LookupOption {
return func(o *LookupOptions) {
o.Context = ctx
}
}
func GetDomain(d string) LookupOption {
func LookupDomain(d string) LookupOption {
return func(o *LookupOptions) {
o.Domain = d
}