DomainIDSetter is an interface that every type that can set a domain ID must implement
| 685 | |
| 686 | // DomainIDSetter is an interface that every type that can set a domain ID must implement |
| 687 | type DomainIDSetter interface { |
| 688 | SetDomainid(string) |
| 689 | } |
| 690 | |
| 691 | // WithDomain takes either a domain name or ID and sets the `domainid` parameter |
| 692 | func WithDomain(domain string) OptionFunc { |
no outgoing calls
no test coverage detected